mirror of
https://github.com/movie-web/movie-web.git
synced 2025-01-06 22:18:15 +01:00
10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
|
import { SettingsCard } from "@/components/layout/SettingsCard";
|
||
|
|
||
|
export function AccountEditPart() {
|
||
|
return (
|
||
|
<SettingsCard className="!mt-8">
|
||
|
<p>Account editing will go here</p>
|
||
|
</SettingsCard>
|
||
|
);
|
||
|
}
|