12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
|
import './TopComponent.scss'
|
|||
|
|
|||
|
function TopComponent() {
|
|||
|
return (
|
|||
|
<div id="top">
|
|||
|
<h1>Florian RICHER</h1>
|
|||
|
<h4>Développeur d´application Web et Mobile</h4>
|
|||
|
{/*Reseau sociaux*/}
|
|||
|
</div>
|
|||
|
)
|
|||
|
}
|
|||
|
export default TopComponent
|