import React from 'react'; import { Poll } from 'which-types'; import { Container } from '@material-ui/core/'; import PollsList from '../../components/PollsList/PollsList'; import PollSubmission from './PollSubmission'; import { useAuth } from '../../hooks/useAuth'; import { useFeed } from '../../hooks/APIClient'; const Feed: React.FC = () => { const { data: polls, mutate } = useFeed(); const { isAuthenticated } = useAuth(); const addPoll = (poll: Poll): void => { mutate([poll, ...polls], true); }; return ( {isAuthenticated && } ); }; export default Feed;