import React, { FC } from 'react' import { useTheme } from '../hooks' const Section: FC = ({ children }) => { const theme = useTheme() return (
{children}
) } export default Section