17 lines
373 B
TypeScript
17 lines
373 B
TypeScript
import './App.css';
|
|
import { ToastContainer } from 'react-toastify';
|
|
import { QuantityPanel } from './components/QuantityPanel.tsx';
|
|
import { Toolbar } from './components/Toolbar.tsx';
|
|
|
|
function App() {
|
|
return (
|
|
<div className="cad-app">
|
|
<Toolbar />
|
|
<QuantityPanel />
|
|
<ToastContainer position="bottom-right" theme="light" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|