This repository has been archived on 2025-11-04. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
know-it-all/client/src/containers/OwnedOrgs.tsx

16 lines
326 B
TypeScript

import Helmet from "react-helmet";
import { OwnedOrgsDashboard } from "../controllers";
function OwnedOrgs() {
return (
<>
<Helmet>
<title>Owned Organizations | KnowItAll</title>
</Helmet>
<OwnedOrgsDashboard />
</>
);
}
export default OwnedOrgs;