From d4fe2dec784042a4b1f7b866dd70032539854251 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 14 Mar 2020 08:52:48 -0400 Subject: [PATCH] Update imports for TaxReturn abstraction. --- src/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 4c70a94..415a661 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,11 +1,11 @@ import { render } from 'solid-js/dom'; -import { Form1040, FilingStatus, Schedule2, W2 } from 'ustaxlib/fed2019'; +import { Form1040, FilingStatus, Schedule2, TaxReturn, W2 } from 'ustaxlib/fed2019'; -import { TaxReturn, Person } from 'ustaxlib/core'; +import { Person } from 'ustaxlib/core'; import App from './App'; -const tr = new TaxReturn(2019); +const tr = new TaxReturn(); tr.addForm(new Form1040({ filingStatus: FilingStatus.Single })); tr.addForm(new W2({ employer: 'Employer', -- 2.22.5