11 lines
207 B
React
11 lines
207 B
React
import React from 'react'
|
|
import FamilyPending from '../components/FamilyAcc/FamilyPendingOffer'
|
|
|
|
export default function FamilyPendingOfferPage() {
|
|
return (
|
|
<>
|
|
<FamilyPending />
|
|
</>
|
|
)
|
|
}
|