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