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

{children}

) } export default Notification