17 lines
295 B
JavaScript
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>
|
|
)
|
|
}
|
|
}
|