cv/src/app/page.tsx

13 lines
273 B
TypeScript
Raw Normal View History

2023-05-24 04:23:20 +00:00
'use client'
2023-05-24 06:43:30 +00:00
import React from 'react';
import Container from 'react-bootstrap/Container';
import JobsHistory from './components/JobsHistory';
2023-05-24 04:23:20 +00:00
export default function Home() {
return (
2023-05-24 06:43:30 +00:00
<Container fluid='xxl'>
<JobsHistory></JobsHistory>
</Container>
2023-05-24 04:23:20 +00:00
)
}