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

16 lines
394 B
TypeScript
Raw Normal View History

2021-10-13 19:32:14 +02:00
import { FunctionalComponent, h } from "preact";
2022-06-06 05:54:55 +02:00
import { TranslationProvider } from "../context/translation.js";
import AnastasisClient from "../pages/home/index.js";
2021-10-11 10:58:55 +02:00
const App: FunctionalComponent = () => {
2021-10-13 19:32:14 +02:00
return (
2021-10-19 15:56:52 +02:00
<TranslationProvider>
<div id="app" class="has-navbar-fixed-top">
<AnastasisClient />
</div>
</TranslationProvider>
2021-10-13 19:32:14 +02:00
);
2021-10-11 10:58:55 +02:00
};
export default App;