9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
import React from 'react'
|
|
import OwnersPageComponent from './owners.page.component'
|
|
|
|
export default function OwnersPageContainer() {
|
|
return (
|
|
<OwnersPageComponent />
|
|
)
|
|
}
|