11 lines
195 B
React
11 lines
195 B
React
import React from 'react'
|
|
import FamInterest from '../components/familyResources/FamInterest'
|
|
|
|
export default function FamInterestPage() {
|
|
return (
|
|
<>
|
|
<FamInterest />
|
|
</>
|
|
)
|
|
}
|