/** * @fileoverview Entity Pages Library * @description Page containers for entity/organization management * * @example * ```tsx * import { * EntityListPage, * MembersManagementPage, * InvitationsPage, * } from '@sudobility/entity_pages'; * * function WorkspacesRoute() { * return ( * * ); * } * ``` */ export { EntityListPage, type EntityListPageProps, MembersManagementPage, type MembersManagementPageProps, InvitationsPage, type InvitationsPageProps, } from './pages';