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.
17 lines
349 B
17 lines
349 B
import React from "react"; |
|
|
|
import Sidebar from "./Sidebar"; |
|
import Main from "./Main"; |
|
|
|
function Home() { |
|
return ( |
|
<div className="flex lg:w-full lg:flex-col lg:h-screen lg:overflow-hidden"> |
|
<div className="lg:w-full h-full lg:flex lg:flex-row"> |
|
<Main /> |
|
<Sidebar /> |
|
</div> |
|
</div> |
|
); |
|
} |
|
|
|
export default Home;
|
|
|