- Added new font support for 'Oxanium' and integrated Radix UI components including Dialog and Select. - Updated CSS to set the default font to 'Oxanium Variable' and adjusted HTML font size. - Introduced AddAccountDialog component for managing debt accounts, enhancing user experience. - Refactored DebtsPage to utilize the new AddAccountDialog and improved account management features. - Updated Redux store to support debt categories and accounts, including actions for adding, updating, and removing accounts. - Mock data added for clients and invoices to facilitate development and testing.
16 lines
385 B
TypeScript
16 lines
385 B
TypeScript
import {StrictMode} from 'react';
|
|
import {createRoot} from 'react-dom/client';
|
|
import {Provider} from 'react-redux';
|
|
import {store} from './store';
|
|
import '@fontsource-variable/oxanium';
|
|
import './index.css';
|
|
import App from './App.tsx';
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<Provider store={store}>
|
|
<App />
|
|
</Provider>
|
|
</StrictMode>
|
|
);
|