12 lines
235 B
TypeScript
12 lines
235 B
TypeScript
import { Text } from '@chakra-ui/react'
|
|
import MainFrame from '../../../components/MainFrame'
|
|
|
|
const FreqAskQuestion = () => {
|
|
return (
|
|
<MainFrame>
|
|
<Text>hello</Text>
|
|
</MainFrame>
|
|
)
|
|
}
|
|
|
|
export default FreqAskQuestion |