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

Skills

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