We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd54682 commit 1203692Copy full SHA for 1203692
src/components/AppLayout/DocsLayout.tsx
@@ -14,15 +14,18 @@ import MainBreadcrumb from '../navigation/MainBreadcrumb';
14
import TableOfContent from '../navigation/TableOfContent';
15
import PageDirectory from '../navigation/page-directory/PageDirectory';
16
17
-const links = [
18
- {
19
- name: 'Question? Give us feedback',
20
- href: '/contact'
21
- },
22
23
- name: 'Edit this page on Jaen',
24
- href: '/cms/pages'
25
- }
+const links: {
+ name: string;
+ href: string;
+}[] = [
+ // {
+ // name: 'Question? Give us feedback',
+ // href: '/contact'
+ // },
26
+ // name: 'Edit this page on Jaen',
27
+ // href: '/cms/pages'
28
+ // }
29
];
30
31
interface DocsLayoutProps {
0 commit comments