Skip to content

Commit

Permalink
Update add-product.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
BurhanCantCode authored Aug 3, 2024
1 parent 97409dd commit 50d18b0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pages/add-product.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
import { NextPage } from 'next';
import { Container, Typography } from '@mui/material';
import { Container, Typography, Box, Paper } from '@mui/material';
import AddProductForm from '../components/AddProductForm';
import ScanProductButton from '../components/ScanProductButton';
import InfoBox from '../components/InfoBox';

const AddProduct: NextPage = () => {
return (
<Container maxWidth="md">
<Typography variant="h3" component="h1" gutterBottom>
Add New Product
</Typography>
<InfoBox />
<ScanProductButton />
<AddProductForm />
</Container>
);
};

export default AddProduct;
export default AddProduct;

0 comments on commit 50d18b0

Please sign in to comment.