blob: 8027b09f88afc29e0d957f2d87866337f1217cab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import { ChangePassword } from "@/components/settings/ChangePassword";
import UserDetails from "@/components/settings/UserDetails";
export default async function InfoPage() {
return (
<div className="rounded-md border bg-background p-4">
<UserDetails />
<ChangePassword />
</div>
);
}
|