"use client"; import ErrorBoundary from "@/components/error-boundary"; import styles from "./home.module.scss"; import { SlotID, Path } from "@/constant/route"; import { BrowserRouter, Routes, Route, Outlet, Navigate, useLocation, HashRouter, } from "react-router-dom"; import { ExtractorSide } from "./extract-side"; import { LanguageProvider } from "@/context/language-provider"; import PDFUpload from "@/pages/extract/components/pdf-upload"; import PDFExtractionJob from "@/pages/extract/components/pdf-extraction"; export function WindowContent() { const location = useLocation(); const isHome = location.pathname === Path.Home; return ( <>
); } function Screen() { const renderContent = () => { return (
}> } /> } /> } /> } />
); }; return <>{renderContent()}; } export function Home() { return ( ); }