2021-05-26 13:35:57 +03:00
|
|
|
import React from 'react';
|
2021-06-01 15:25:01 +03:00
|
|
|
import Outstaffing from '../Outstaffing/Outstaffing';
|
|
|
|
import Description from '../Description/Description';
|
2021-05-28 16:21:28 +03:00
|
|
|
|
|
|
|
export const candidatesList = [
|
|
|
|
{ id: 1, name: 'Frontend' },
|
|
|
|
{ id: 2, name: 'Backend' },
|
|
|
|
];
|
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-28 16:21:28 +03:00
|
|
|
<Description arr={candidatesList} />
|
2021-05-26 15:59:00 +03:00
|
|
|
</>
|
2021-05-26 13:35:57 +03:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Home;
|