Added base owners list page.

This commit is contained in:
Patrick Fic
2020-02-10 09:05:33 -08:00
parent a3c66866d3
commit cef294b65f
8 changed files with 186 additions and 7 deletions

View File

@@ -1,9 +1,6 @@
import React from 'react'
import React from "react";
import OwnersListContainer from "../../components/owners-list/owners-list.container";
export default function OwnersPageComponent() {
return (
<div>
Owners Page
</div>
)
return <OwnersListContainer />;
}