wallet-core/packages/anastasis-webui/src/components/app.tsx

14 lines
242 B
TypeScript
Raw Normal View History

2021-10-13 19:32:14 +02:00
import { FunctionalComponent, h } from "preact";
2021-10-11 10:58:55 +02:00
2021-10-13 19:32:14 +02:00
import AnastasisClient from "../routes/home";
2021-10-11 10:58:55 +02:00
const App: FunctionalComponent = () => {
2021-10-13 19:32:14 +02:00
return (
<div id="preact_root">
<AnastasisClient />
</div>
);
2021-10-11 10:58:55 +02:00
};
export default App;