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.
22 lines
534 B
22 lines
534 B
import React from 'react';
|
|
import AjoutLien from '../components/AjoutLien';
|
|
import DisplayPosts from '../components/Post/DisplayPosts';
|
|
import Navbar from '../components/Navbar';
|
|
|
|
const Home = () => {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<main >
|
|
<div className='postInMain'>
|
|
<DisplayPosts/>
|
|
</div>
|
|
<div className="RightBar">
|
|
<AjoutLien/>
|
|
</div>
|
|
</main>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Home; |