1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-12 10:02:49 +00:00
Files
classic-wow-forums/client/app/components/footer/footer.tsx

21 lines
345 B
TypeScript

import React from 'react';
import bottom_blizzlogo from '../../assets/bottom-blizzlogo.gif';
import './footer.scss';
interface Props {}
interface State {}
export class Footer extends React.Component<Props, State> {
render() {
return (
<div className="bottom-bg">
<img src={bottom_blizzlogo}/>
</div>
);
}
}