11 lines
203 B
React
11 lines
203 B
React
import React from 'react'
|
|
import FamAIQuestion from '../components/familyResources/FamAIQuestion'
|
|
|
|
export default function FamAIQuestionPage() {
|
|
return (
|
|
<>
|
|
<FamAIQuestion />
|
|
</>
|
|
)
|
|
}
|