mirror of
https://github.com/yusufipk/nexter-react.git
synced 2026-09-11 17:46:07 +00:00
created layout
This commit is contained in:
+20
-1
@@ -1,7 +1,26 @@
|
||||
import "./sass/main.scss";
|
||||
import Sidebar from "./commons/sidebar";
|
||||
import Header from "./commons/header";
|
||||
import Features from "./commons/features";
|
||||
import Stories from "./commons/stories";
|
||||
import Homes from "./commons/homes";
|
||||
import Gallery from "./commons/gallery";
|
||||
import Footer from "./commons/footer";
|
||||
import Realtors from "./commons/realtors";
|
||||
|
||||
function App() {
|
||||
return <div></div>;
|
||||
return (
|
||||
<div className="container">
|
||||
<Sidebar />
|
||||
<Header />
|
||||
<Realtors />
|
||||
<Features />
|
||||
<Stories />
|
||||
<Homes />
|
||||
<Gallery />
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
|
||||
Reference in New Issue
Block a user