[ABANDONED] React/Redux front end for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

35 lines
883 B

import React, { FC, useEffect } from 'react'
import { useSelector } from 'react-redux'
import { getAuthenticated } from 'src/selectors/authentication'
import { setTitle } from 'src/utils'
import { AppState } from 'src/types'
import PageHeader from 'src/components/page-header'
import Composer from 'src/components/composer'
import Timeline from 'src/components/timeline'
const Home: FC = () => {
const authenticated = useSelector<AppState, boolean>(getAuthenticated)
useEffect(() => {
setTitle('Home')
})
return (
<div>
<PageHeader title="Home" />
<div className="main-content">
{authenticated &&
<div>
<Composer />
<Timeline />
</div>
}
</div>
</div>
)
}
export default Home