services -> domains
This commit is contained in:
10
web/src/router/pages/DomainsPage.tsx
Normal file
10
web/src/router/pages/DomainsPage.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import { ErrorBoundary } from '../../components';
|
||||
import { DomainsComponent } from '../../components/DomainsComponent';
|
||||
|
||||
export function DomainsPage() {
|
||||
return (
|
||||
<ErrorBoundary>
|
||||
<DomainsComponent />
|
||||
</ErrorBoundary>
|
||||
);
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
import { ErrorBoundary } from '../../components';
|
||||
import { ServicesComponent } from '../../components/ServicesComponent';
|
||||
|
||||
export function ServicesPage() {
|
||||
return (
|
||||
<ErrorBoundary>
|
||||
<ServicesComponent />
|
||||
</ErrorBoundary>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user