import React, { useContext } from 'react'; import Container from 'react-bootstrap/Container'; import { PersonContext } from '../hooks/PersonContext'; import TagCloud from './TagCloud'; export default function Skills() { const person = useContext(PersonContext) return (

Skills

{person.skills.secondary && ( )} {person.skills.languages && ( )} {person.skills.others && ( )} {person.interests && ( )}
) }