-
-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathcomponents.tsx
63 lines (59 loc) · 1.18 KB
/
components.tsx
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import {
Section,
SectionLink,
SectionCode,
} from "./mdx-client/section"
import { Code } from "./mdx-client/code"
import { Spotlight } from "./mdx-client/spotlight"
import { Scrollycoding } from "./mdx-client/scrollycoding"
import { CodeSlot, PreviewSlot } from "./mdx-client/slots"
import { Slideshow } from "./mdx-client/slideshow"
import {
annotationsMap,
Annotation,
} from "./mdx-client/annotations"
import { Preview } from "./mdx-client/preview"
import { InlineCode } from "./mdx-client/inline-code"
import {
useStaticToggle,
StaticToggle,
} from "./mdx-client/ssmq"
export {
Code,
Section,
SectionLink,
SectionCode,
Spotlight,
Scrollycoding,
Preview,
annotationsMap as annotations,
Annotation,
Slideshow,
InlineCode,
CodeSlot,
PreviewSlot,
useStaticToggle,
StaticToggle,
}
export const CH = {
Code,
Section,
SectionLink,
SectionCode,
Spotlight,
Scrollycoding,
Preview,
annotations: annotationsMap,
Annotation,
Slideshow,
InlineCode,
CodeSlot,
PreviewSlot,
StaticToggle,
}
import { MiniBrowser } from "./mini-browser"
import { EditorSpring } from "./mini-editor"
export const internal = {
MiniBrowser,
EditorSpring,
}