This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocumenteditor-routes.tsx
More file actions
33 lines (29 loc) · 2.68 KB
/
documenteditor-routes.tsx
File metadata and controls
33 lines (29 loc) · 2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { Route } from 'react-router-dom';
import * as React from 'react';
import { Default } from './default';
import { CharacterFormatView } from './character-formatting';
import { ParagraphFormatView } from './paragraph-formatting';
import { StylesView } from './styles';
import { BulletsAndNumberingView } from './bullets-and-numbering';
import { HyperlinksAndBookmarksView } from './links-and-bookmarks';
import { TableFormatView } from './table-formatting';
import { SectionFormatView } from './section-formatting';
import { HeadersAndFootersView } from './headers-and-footers';
import { TableOfContentsView } from './table-of-contents';
import { PrintView } from './print';
export const documenteditorRoutes = (
<div>
<Route path='/:theme/document-editor/default' component={ Default }/>
<Route path='/:theme/document-editor/character-formatting' component={ CharacterFormatView }/>
<Route path='/:theme/document-editor/paragraph-formatting' component={ ParagraphFormatView }/>
<Route path='/:theme/document-editor/styles' component={ StylesView }/>
<Route path='/:theme/document-editor/bullets-and-numbering' component={ BulletsAndNumberingView }/>
<Route path='/:theme/document-editor/links-and-bookmarks' component={ HyperlinksAndBookmarksView }/>
<Route path='/:theme/document-editor/table-formatting' component={ TableFormatView }/>
<Route path='/:theme/document-editor/section-formatting' component={ SectionFormatView }/>
<Route path='/:theme/document-editor/headers-and-footers' component={ HeadersAndFootersView }/>
<Route path='/:theme/document-editor/table-of-contents' component={ TableOfContentsView }/>
<Route path='/:theme/document-editor/print' component={ PrintView }/>
</div>
)
export const documenteditorCategory = {"default":{"name":"Default Functionalities","category":"DocumentEditor"},"character-formatting":{"name":"Character Formatting","category":"Editing Features"},"paragraph-formatting":{"name":"Paragraph Formatting","category":"Editing Features"},"styles":{"name":"Styles","category":"Editing Features"},"bullets-and-numbering":{"name":"Bullets and Numbering","category":"Editing Features"},"links-and-bookmarks":{"name":"Hyperlinks and Bookmarks","category":"Editing Features"},"table-formatting":{"name":"Table Formatting","category":"Editing Features"},"section-formatting":{"name":"Section Formatting","category":"Editing Features"},"headers-and-footers":{"name":"Headers and Footers","category":"Editing Features"},"table-of-contents":{"name":"Table of Contents","category":"Editing Features"},"print":{"name":"Print","category":"Print"},"defaultSample":"document-editor/default"}