2021-04-21 16:21:30 +00:00
|
|
|
import React from "react"
|
|
|
|
import Style from "./PageSettings.module.css"
|
|
|
|
import classNames from "classnames"
|
2021-04-23 00:24:38 +00:00
|
|
|
import BoxHeader from "../components/BoxHeader"
|
2021-04-21 16:42:28 +00:00
|
|
|
import BoxWithHeader from "../components/BoxWithHeader"
|
2021-04-21 16:58:14 +00:00
|
|
|
import Select from "../components/Select"
|
|
|
|
import SelectTheme from "../components/SelectTheme"
|
2021-04-21 16:21:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
export default function PageSettings({ children, className, ...props }) {
|
|
|
|
return (
|
|
|
|
<div className={classNames(Style.PageSettings, className)} {...props}>
|
2021-04-23 00:24:38 +00:00
|
|
|
<BoxHeader>
|
2021-04-21 16:42:28 +00:00
|
|
|
You are currently logged in as:
|
2021-04-23 00:24:38 +00:00
|
|
|
</BoxHeader>
|
|
|
|
<BoxHeader>
|
2021-04-21 16:58:14 +00:00
|
|
|
Switch theme: <SelectTheme/>
|
2021-04-23 00:24:38 +00:00
|
|
|
</BoxHeader>
|
2021-04-21 16:42:28 +00:00
|
|
|
<BoxWithHeader header={"Change your email address"}>
|
|
|
|
|
|
|
|
</BoxWithHeader>
|
|
|
|
<BoxWithHeader header={"Alert settings"}>
|
|
|
|
|
|
|
|
</BoxWithHeader>
|
|
|
|
<BoxWithHeader header={"Change your password"}>
|
|
|
|
|
|
|
|
</BoxWithHeader>
|
2021-04-21 16:21:30 +00:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|