import React, { FC } from 'react' import { useTheme } from '../hooks' import { LevelItem } from '../types' interface Props { items: LevelItem[] } const Level: FC = ({ items }) => { const theme = useTheme() return ( ) } export default Level