import {Separator} from "@/components/ui/separator" import {useAppSelector} from "@/hooks.ts"; import {App} from "@/models/app.ts" const SiteHeader = () => { const app: App = useAppSelector(state => state.app) return (

{app.currentPage === 'offerwall' && "Offerwall"} {app.currentPage === 'questions' && "Profiling Questions"} {app.currentPage === 'demographics' && "User Demographics"} {app.currentPage === 'task_attempts' && "Task Attempts"} {app.currentPage === 'cashout_methods' && "Cashout Methods"} {app.currentPage === 'transaction_history' && 'Transaction History'}

) } export {SiteHeader}