| 1234567891011121314151617181920212223 |
- import React from "react";
- import BodyWrapper from "../components/BodyWrapper";
- import Settings from "../components/Settings";
- import Footer from "../components/Footer";
- import { useStoreState } from "../store";
- const SettingsPage = () => {
- const { isAuthenticated } = useStoreState(s => s.auth);
- if (!isAuthenticated) {
- return null;
- }
- return (
- <BodyWrapper>
- <Settings />
- <Footer />
- </BodyWrapper>
- );
- };
- export default SettingsPage;
|