13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
import Navbar from "../components/Navbar";
|
|
import Gallery from "./components/Gallery";
|
|
import Content from "./components/Content";
|
|
function Main() {
|
|
return (
|
|
<div>
|
|
<Navbar active="1"/>
|
|
<Gallery/>
|
|
<Content/>
|
|
</div>
|
|
);
|
|
}
|
|
export default Main; |