Implement continue for each file type

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-03-03 19:37:20 +04:00
parent c4b06ddc7d
commit ebfec30a14
7 changed files with 174 additions and 220 deletions

View File

@@ -1,11 +0,0 @@
import { createContext } from "react";
interface ViewerContextValue {
fullName: string;
email: string;
}
export const Viewer = createContext<ViewerContextValue | undefined | null>({
email: "",
fullName: "",
});