You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
634 B
31 lines
634 B
import "../style/settings/settings.css"
|
|
import { MainTitle } from "./component/Title"
|
|
import {Header} from './template/Header'
|
|
|
|
export default function Settings({username} : {username : string}){
|
|
return (
|
|
<div id="main">
|
|
<Header username={username} />
|
|
<Body/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function Body() {
|
|
return (
|
|
<div id="body">
|
|
<div id="content">
|
|
<MainTitle title="Paramètres" id={null}/>
|
|
<AccountSettings/>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function AccountSettings(){
|
|
return (
|
|
<div id="account">
|
|
|
|
</div>
|
|
)
|
|
} |