10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
import React from 'react'
|
|
import TermsSection from "@/features/profile/ui/terms-section";
|
|
|
|
const Page = () => {
|
|
return (
|
|
<TermsSection/>
|
|
)
|
|
}
|
|
export default Page
|