mirror of
https://github.com/movie-web/movie-web.git
synced 2025-01-05 01:21:53 +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>
|
|
);
|
|
}
|