]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/pages/Schedule.js
offload some page chunks
[alttp.git] / resources / js / pages / Schedule.js
index 065b9150cf84b118d4ea759755dc54696cfb2476..50077390d1118ae7666ed46a25d2cebf688a150c 100644 (file)
@@ -16,7 +16,7 @@ import RestreamDialog from '../components/episodes/RestreamDialog';
 import { toggleEventFilter } from '../helpers/Episode';
 import { useUser } from '../hooks/user';
 
-const Schedule = () => {
+export const Component = () => {
        const [ahead] = React.useState(14);
        const [applyAs, setApplyAs] = React.useState('commentary');
        const [behind] = React.useState(0);
@@ -329,5 +329,3 @@ const Schedule = () => {
                </> : null}
        </Container>;
 };
-
-export default Schedule;