blob: 8c9627251df32efb9c8de5361880ad8c652cc4cf (
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="px-4 pt-6 bg-white">
<Result />
</main>
</Authenticated>
)
}
export default ResultPage
|