Files
warframe-center/app/components/Footer.js
Anatoly 4f54d08666
All checks were successful
continuous-integration/drone/push Build is passing
Got rid of scss files, fixet time format
2022-03-19 15:41:32 +03:00

17 lines
295 B
JavaScript

import { Component } from 'react'
import { Box } from '@mui/material'
export default class Footer extends Component {
render () {
return (
<Box
sx={{
p: 12
}}
>
Warframe Center is not associated with Digital Extremes
</Box>
)
}
}