11 lines
179 B
React
11 lines
179 B
React
import React from 'react'
|
|
import FamBlog from '../components/familyResources/FamBlog'
|
|
|
|
export default function FamBlogPage() {
|
|
return (
|
|
<>
|
|
<FamBlog />
|
|
</>
|
|
)
|
|
}
|