Files
nobat724_front/app/dashboard/page.js
T
2025-05-11 23:52:39 +03:30

13 lines
263 B
JavaScript

import Content from "@/components/dashboard/Content";
import { getStateInfo } from "@/lib/getStateInfo";
function UserAccount() {
const { matchedCity } = getStateInfo();
return (
<Content matchedCity={matchedCity} />
);
}
export default UserAccount;