15 lines
339 B
TypeScript
15 lines
339 B
TypeScript
import ContentSection from "../components/content-section";
|
|
import { AccountForm } from "./account-form";
|
|
|
|
export default function SettingsAccount() {
|
|
return (
|
|
<ContentSection
|
|
title="Account"
|
|
desc="Update your account settings. Set your preferred language and
|
|
timezone."
|
|
>
|
|
<AccountForm />
|
|
</ContentSection>
|
|
);
|
|
}
|