14 lines
284 B
JavaScript
14 lines
284 B
JavaScript
'use client'
|
|
import { useContext } from 'react'
|
|
import { QcastContext } from '@/app/QcastProvider'
|
|
|
|
export default function SamplePage() {
|
|
const { setIsGlobalLoading } = useContext(QcastContext)
|
|
setIsGlobalLoading(false)
|
|
return (
|
|
<>
|
|
<h1>Sample Page</h1>
|
|
</>
|
|
)
|
|
}
|