18 lines
324 B
React
18 lines
324 B
React
|
|
import About from "./About";
|
||
|
|
import Contact from "./Contact";
|
||
|
|
import Experiance from "./Experience";
|
||
|
|
import Start from "./Start";
|
||
|
|
|
||
|
|
function FullPage() {
|
||
|
|
return (
|
||
|
|
<div className="container mx-auto px-2">
|
||
|
|
<Start />
|
||
|
|
<About />
|
||
|
|
<Experiance />
|
||
|
|
<Contact />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default FullPage;
|