13 lines
263 B
JavaScript
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;
|