2021-05-26 13:35:57 +03:00
|
|
|
import React from 'react';
|
|
|
|
import Outstaffing from './sections/Outstaffing';
|
|
|
|
import Description from './sections/Description';
|
2021-05-26 15:59:00 +03:00
|
|
|
import Search from './sections/Search';
|
2021-05-26 13:35:57 +03:00
|
|
|
|
|
|
|
const Home = () => {
|
|
|
|
return (
|
2021-05-26 15:59:00 +03:00
|
|
|
<>
|
2021-05-26 13:35:57 +03:00
|
|
|
<Outstaffing />
|
2021-05-26 15:59:00 +03:00
|
|
|
<Search />
|
2021-05-26 13:35:57 +03:00
|
|
|
<Description />
|
2021-05-26 15:59:00 +03:00
|
|
|
</>
|
2021-05-26 13:35:57 +03:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Home;
|