FunctionProject/website/pages/functions/index.jsx

21 lines
455 B
React
Raw Normal View History

2020-08-03 12:04:07 +02:00
import HeadTag from '../../components/HeadTag'
import FunctionsList from '../../components/FunctionsList/FunctionsList'
const Functions = () => {
2020-08-03 12:04:07 +02:00
return (
<>
<HeadTag
title='Fonctions'
description='Liste des fonctions.'
image='/images/FunctionProject_icon_small.png'
/>
2020-08-03 12:04:07 +02:00
<FunctionsList>
<h1 className='Functions__title'>Fonctions</h1>
</FunctionsList>
</>
)
}
2020-08-03 12:04:07 +02:00
export default Functions