mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-04-03 03:33:20 +02:00
9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
import React from 'react';
|
|
import { StyledFooter } from './styled';
|
|
|
|
const Footer = (): React.ReactElement => (
|
|
<StyledFooter>footer</StyledFooter>
|
|
);
|
|
|
|
export default Footer;
|