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