-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
47 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import React, {useState} from 'react'; | ||
import { Typography } from '@mui/material'; | ||
import VStack from "../../components/VStack"; | ||
import Layout from "../../components/Layout"; | ||
import {useParams} from "react-router-dom"; | ||
|
||
const ProfileSectionScreen = () => { | ||
const { id } = useParams(); | ||
//const [data, setData] = useState(null); | ||
|
||
return ( | ||
<Layout> | ||
<VStack> | ||
<VStack gap={1}> | ||
<Typography variant="h4" gutterBottom sx={styles.titleText}> | ||
{id} | ||
</Typography> | ||
<Typography variant="body1" gutterBottom sx={styles.subTitleText}> | ||
Bevor wir losgehen können, benötigen wir noch einen Benutzernamen von dir. | ||
</Typography> | ||
</VStack> | ||
</VStack> | ||
</Layout> | ||
); | ||
}; | ||
|
||
const styles = { | ||
titleText: { | ||
fontWeight: 'bold', | ||
}, | ||
subTitleText: { | ||
fontSize: '16px', | ||
fontWeight: '400' | ||
} | ||
}; | ||
|
||
export default ProfileSectionScreen; |