12 lines
255 B
TypeScript
12 lines
255 B
TypeScript
|
|
import Sidebar from "./sidebar";
|
||
|
|
import RecentDesign from "./recentDesign";
|
||
|
|
|
||
|
|
|
||
|
|
export default function SideNav() {
|
||
|
|
return (
|
||
|
|
<div className="flex flex-col md:flex-row">
|
||
|
|
<Sidebar />
|
||
|
|
<RecentDesign />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|