-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vocs.config.ts
64 lines (63 loc) · 1.42 KB
/
vocs.config.ts
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
64
import { defineConfig } from 'vocs'
export default defineConfig({
description: `☄️ An extremely light-weight react transition hook which is simpler and easier to use than react-transition-group.`,
title: 'Transition-hooks',
editLink: {
pattern: 'https://github.com/Daydreamer-riri/transition-hooks/edit/main/docs/pages/:path',
text: 'Suggest changes to this page',
},
socials: [
{
icon: 'github',
link: 'https://github.com/Daydreamer-riri/transition-hooks',
},
],
topNav: [
{ text: 'Guide & API', link: '/docs', match: '/docs' },
],
sidebar: [
{
text: 'Getting Started',
items: [
{
text: 'Introduction',
link: '/docs',
},
],
},
{
text: 'Hooks',
items: [
{
text: 'useTransition',
link: '/docs/useTransition',
},
{
text: 'useSwitchTransition',
link: '/docs/useSwitchTransition',
},
{
text: 'useListTransition',
link: '/docs/useListTransition',
},
],
},
{
text: 'Components',
items: [
{
text: 'Transition',
link: '/docs/Transition',
},
{
text: 'SwitchTransition',
link: '/docs/SwitchTransition',
},
{
text: 'ListTransition',
link: '/docs/ListTransition',
},
],
},
],
})