mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-04-06 13:03:20 +02:00
9 lines
176 B
TypeScript
9 lines
176 B
TypeScript
import React from 'react';
|
|
import { StyledTopBar } from './styled'
|
|
|
|
const TopBar = ():React.ReactElement => (
|
|
<StyledTopBar>top bar</StyledTopBar>
|
|
);
|
|
|
|
export default TopBar;
|