[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.
 
 

20 lines
662 B

import React, { FC } from 'react'
import { Link } from 'react-router-dom'
const Divider: FC = () => <>&nbsp;&nbsp;&#9900;&nbsp;&nbsp;</>
const Footer: FC = () => (
<footer>
<div className="content has-text-centered has-text-white is-size-7">
<Link className="has-text-white is-inline-block" to="/">Home</Link>
<Divider />
<Link className="has-text-white is-inline-block" to="/developers">Developers</Link>
<Divider />
<Link className="has-text-white is-inline-block" to="/about">About</Link>
<p>&copy; 2019 Flexor.cc</p>
</div>
</footer>
)
export default Footer