You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
478 B

import React from "react";
import MainAP from "./Main";
import SideAP from "./Sidebar";
const AddProduct = () => {
return(
<div className="w-[96%] h-screen overflow-x-hidden overflow-scroll bg-grayFD flex items-start mt-20 py-10 justify-center">
<div className="w-1/4">
<SideAP />
</div>
<div className="w-3/4">
<MainAP />
</div>
</div>
)
}
export default AddProduct;