Paulo Gustavo Veiga c074a9afae Fix jslint
2021-02-16 22:01:25 -08:00

9 lines
176 B
TypeScript

import React from 'react';
import { StyledTopBar } from './styled'
const TopBar = ():React.ReactElement => (
<StyledTopBar>top bar</StyledTopBar>
);
export default TopBar;