mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-03-25 14:53:59 +01:00
11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
import React from 'react';
|
|
import Mindplot from '@wismapping/web2d';
|
|
|
|
const App = (): React.ReactElement => {
|
|
const mindplot = Mindplot();
|
|
console.log(mindplot);
|
|
return <div>Webcomponent</div>;
|
|
};
|
|
|
|
export default App;
|