* feat(profile): add 'Услуги' link button to LinksCard for service management * feat(services): add create and update service functionalities with corresponding API actions and hooks
16 lines
410 B
TypeScript
16 lines
410 B
TypeScript
import { Container } from '@/components/layout';
|
|
import { PageHeader } from '@/components/navigation';
|
|
import { ServicesAddButton, ServicesList } from '@/components/profile/services';
|
|
|
|
export default function SchedulePage() {
|
|
return (
|
|
<>
|
|
<PageHeader title="Услуги" />
|
|
<Container className="px-0">
|
|
<ServicesList />
|
|
<ServicesAddButton />
|
|
</Container>
|
|
</>
|
|
);
|
|
}
|