mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-11 01:22:49 +00:00
21 lines
409 B
TypeScript
21 lines
409 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">
|
|
{/* don't show the blizzard logo for now */}
|
|
{/* <img src={bottom_blizzlogo}/> */}
|
|
</div>
|
|
);
|
|
}
|
|
}
|