import React, { FunctionComponent, useState } from 'react'; import { ChannelContext } from '../Context/ChannelContext'; const Channel: FunctionComponent = ({ children }) => { const [channel, setChannel] = useState(); return ( { children } ); }; export default Channel;