mirror of
https://github.com/FranP-code/spend-ia.git
synced 2025-10-13 00:14:09 +00:00
Initial commit 🚀
This commit is contained in:
14
src/App.tsx
Normal file
14
src/App.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import React, { useState } from 'react';
|
||||
import { Header } from './screens';
|
||||
|
||||
function App(): JSX.Element {
|
||||
const [tab, setTab] = useState({});
|
||||
|
||||
return (
|
||||
<div>
|
||||
<Header tab={tab} setTab={setTab} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
Reference in New Issue
Block a user