Split TaxReturnView out of App.
[ustaxviewer.git] / src / App.tsx
1 import { TaxReturn } from 'ustaxlib/core';
2
3 import TaxReturnView from './TaxReturnView';
4
5 const S = require('./App.css');
6
7 interface Props {
8 tr: TaxReturn;
9 }
10
11 export default function App(props: Props) {
12 return (<div class={S.container}><TaxReturnView {...props} /></div>);
13 }