25 lines
557 B
JavaScript
25 lines
557 B
JavaScript
import React from "react";
|
|
import Body from "./Body";
|
|
import "/Users/dml-veerjot/Documents/development/html/blog_app/src/styleing/layout.css";
|
|
|
|
const Layout = () => {
|
|
return (
|
|
<div className="contentPage">
|
|
<div className="header">
|
|
<h2 className="heading"> Latest Blogs</h2>
|
|
<input
|
|
className="search"
|
|
type="text"
|
|
name="searchBlog"
|
|
placeholder="Search Blog here"
|
|
/>
|
|
</div>
|
|
<div className="body">
|
|
<Body />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Layout;
|