aboutsummaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/components/app.tsx
blob: 45c9035f032229c466f6288e4e139dc4e71d2c50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { FunctionalComponent, h } from "preact";

import AnastasisClient from "../routes/home";

const App: FunctionalComponent = () => {
  return (
    <div id="preact_root">
      <AnastasisClient />
    </div>
  );
};

export default App;