blob: 8819eb5545f57b79dd0400de4abbc0b6e53fbf2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import Authenticated from "@/common/components/Authenticated"
import Result from "@/modules/result"
const ResultPage = () => {
return (
<Authenticated>
<main className="p-4 bg-white flex flex-col max-h-screen">
<Result />
</main>
</Authenticated>
)
}
export default ResultPage
|