Files
ai-coding-workflow-labs/gsd-framework/src/app.jsx
T
tiennm99 09227d77f8 feat(01-04): wire Items components in App
- Import ItemForm and ItemsList
- Add Items section after People section
- App now supports full bill entry workflow
2026-03-12 02:51:44 +00:00

25 lines
630 B
React

import { PersonForm } from './components/people/PersonForm.jsx';
import { PeopleList } from './components/people/PeopleList.jsx';
import { ItemForm } from './components/items/ItemForm.jsx';
import { ItemsList } from './components/items/ItemsList.jsx';
export function App() {
return (
<div class="app">
<h1>Bill Splitter</h1>
<section class="people-section">
<h2>People</h2>
<PersonForm />
<PeopleList />
</section>
<section class="items-section">
<h2>Items</h2>
<ItemForm />
<ItemsList />
</section>
</div>
);
}