2025-04-26 22:48:39 +00:00
|
|
|
import Sidebar from "./Side_bar";
|
|
|
|
|
import RecentDesign from "./Recent_Design";
|
2025-04-26 20:18:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
export default function SideNav() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex flex-col md:flex-row">
|
|
|
|
|
<Sidebar />
|
|
|
|
|
<RecentDesign />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|