import React, { useState } from "react";
import ProductTable1 from "./ProductTable1";
import ProductTab from "./ProductTab";
function Advertisements() {
const list = {
1: ,
2: ,
};
const [type, setType] = useState(1);
return (
{list[type]}
);
}
export default Advertisements;