11 lines
219 B
React
11 lines
219 B
React
import React from 'react'
|
|
import FamWorkInProgress from '../components/familyResources/FamWorkInProgress'
|
|
|
|
export default function FamWorkInProgressPage() {
|
|
return (
|
|
<>
|
|
<FamWorkInProgress />
|
|
</>
|
|
)
|
|
}
|