mirror of https://github.com/MaxLeiter/Drift
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
511 B
TypeScript
27 lines
511 B
TypeScript
import Password from "./sections/password"
|
|
import Profile from "./sections/profile"
|
|
import SettingsGroup from "../settings-group"
|
|
|
|
const SettingsPage = () => {
|
|
return (
|
|
<div
|
|
style={{
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
gap: "var(--gap)",
|
|
marginBottom: "var(--gap)"
|
|
}}
|
|
>
|
|
<h1>Settings</h1>
|
|
<SettingsGroup title="Profile">
|
|
<Profile />
|
|
</SettingsGroup>
|
|
<SettingsGroup title="Password">
|
|
<Password />
|
|
</SettingsGroup>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default SettingsPage
|