summaryrefslogtreecommitdiff
path: root/packages/bank/src/components/app.tsx
blob: a211aea12acea1922b887037b69c8d706b4da7da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { FunctionalComponent, h } from 'preact';
import { TranslationProvider } from '../context/translation';
import { BankHome } from '../pages/home/index';

const App: FunctionalComponent = () => {
  return (
    <TranslationProvider>
      {/* TODO: move this somewhere else
		the code is too spaghetti for me to find out where to put this */}
      <div class="transitionContainer" />
      <BankHome />
    </TranslationProvider>
  );
};

export default App;