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.
 
 
 

14 lines
407 B

import React from "react";
import { Link } from "react-router-dom";
import { List, Segment } from "semantic-ui-react";
const Footer = () => (
<Segment textAlign="center" color="red" style={{ margin: "0" }}>
<List bulleted horizontal link>
<List.Item as={Link} to="/">Caremyway</List.Item>
<List.Item as={Link} to="/about">About</List.Item>
</List>
</Segment>
);
export default Footer;