ente/src/pages/index.tsx

13 lines
275 B
TypeScript
Raw Normal View History

2021-06-04 07:57:48 +00:00
import React, { useContext, useEffect } from 'react';
import { AppContext } from './_app';
2021-05-29 06:27:52 +00:00
2021-06-04 07:57:48 +00:00
export default function LandingPage() {
const appContext = useContext(AppContext);
useEffect(() => {
2021-06-04 07:57:48 +00:00
appContext.showNavBar(false);
}, []);
2021-06-04 07:57:48 +00:00
return <div />;
2020-09-09 21:09:51 +00:00
}