Formatage des dates dans l'interface

This commit is contained in:
2020-10-01 11:44:29 +02:00
parent 11f54ab66e
commit 61eacefd6c
4 changed files with 26 additions and 11 deletions

View File

@ -25,12 +25,14 @@ export function ProfilePage() {
<section className="section">
<div className="columns">
<div className="column is-6 is-offset-3">
<h2 className="is-size-2 subtitle">Mon profil</h2>
<WithLoader loading={isLoading || !userProfile}>
{
<UserForm onChange={onUserChange} user={userProfile} />
}
</WithLoader>
<div className="box">
<h2 className="is-size-2 subtitle">Mon profil</h2>
<WithLoader loading={isLoading || !userProfile}>
{
<UserForm onChange={onUserChange} user={userProfile} />
}
</WithLoader>
</div>
</div>
</div>
</section>