feedback visible conditioned, update meta info in shared

This commit is contained in:
ManishMadan2882
2024-07-15 02:55:38 +05:30
parent 35b1a40d49
commit 84eed09a17
7 changed files with 114 additions and 116 deletions

View File

@@ -33,11 +33,7 @@ function MainLayout({ children }: { children: ReactElement }) {
}
function Layout({ children }: { children: ReactElement }) {
return (
<>
<div className={`h-full dark:bg-raisin-black`}>{children}</div>
</>
);
return <div className="h-full dark:bg-raisin-black">{children}</div>;
}
export default function App() {
const [isDarkTheme] = useDarkTheme();