Files
nobat724_front/app/dashboard/page.js
T
2025-05-18 01:18:35 +03:30

11 lines
253 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;