mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
moved stuff out of app since it is used for routing
This commit is contained in:
13
src/Fragments/FooterLink/index.tsx
Normal file
13
src/Fragments/FooterLink/index.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { ListItemText, Link } from "@mui/material";
|
||||
import styles from './styles.module.css'
|
||||
import { withStyles } from '@mui/material/styles';
|
||||
import styled from '@emotion/styled'
|
||||
import React from "react";
|
||||
|
||||
export default function FooterLink(props) {
|
||||
return (
|
||||
<ListItemText inset >
|
||||
<Link href={props.href}><a className={styles.navLinks}>{props.title}</a></Link>
|
||||
</ListItemText>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user