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