Skip to content

Commit b06ec0f

Browse files
committed
add tutiorials
1 parent 20da76c commit b06ec0f

13 files changed

+103
-2
lines changed

.storybook/preview.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export const parameters = {
4444
'Types',
4545
['Data', 'Compact Table', 'Composed Table', ...Features],
4646
'Compact Table',
47-
['FAQ', 'Base', ...Features],
47+
['Base', ...Features],
4848
'Library Themes',
4949
[
5050
'Mantine',
@@ -56,6 +56,8 @@ export const parameters = {
5656
],
5757
'Product Themes',
5858
['Google Drive (WIP)', 'Stripe (WIP)'],
59+
'Tutorials',
60+
['Table', ...Features],
5961
'Features',
6062
Features,
6163
'Composites',

.storybook/stories/FirstSteps/faq.story.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ While navigating through the documentation, you will see both, `CompactTable`s a
88

99
## Compact Table
1010

11-
The `CompactTable` is the straightforward yet basic usage of the table library: It's one table component to rule them all. All configuration of the table can be provided via props to this component. Under the hood, the `CompactTable` is an assembled composed table. Usually you will want to use `CompactTable` for any case. However, once it gets more complex, you may want to use the Composed Table ...
11+
The `CompactTable` is the straightforward yet basic usage of the table library: It's one table component to rule them all. All configuration of the table can be provided via props to this component. Under the hood, the `CompactTable` is an assembled composed table. Usually you will want to use `CompactTable` for most cases, however, once it gets more complex, you may want to use the Composed Table ...
1212

1313
## Composed Table
1414

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Meta } from '@storybook/addon-docs/blocks';
2+
3+
<Meta title="Tutorials/Filter" />
4+
5+
# Filter
6+
7+
```sh
8+
https://www.robinwieruch.de/react-table-filter/
9+
```
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Meta } from '@storybook/addon-docs/blocks';
2+
3+
<Meta title="Tutorials/Fixed Header" />
4+
5+
# Fixed Header
6+
7+
```sh
8+
https://www.robinwieruch.de/react-table-fixed-header/
9+
```
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Meta } from '@storybook/addon-docs/blocks';
2+
3+
<Meta title="Tutorials/Pagination" />
4+
5+
# Pagination
6+
7+
```sh
8+
https://www.robinwieruch.de/react-table-pagination/
9+
```
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Meta } from '@storybook/addon-docs/blocks';
2+
3+
<Meta title="Tutorials/Resize" />
4+
5+
# Resize
6+
7+
```sh
8+
https://www.robinwieruch.de/react-table-resize/
9+
```
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Meta } from '@storybook/addon-docs/blocks';
2+
3+
<Meta title="Tutorials/Search" />
4+
5+
# Search
6+
7+
```sh
8+
https://www.robinwieruch.de/react-table-search/
9+
```
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Meta } from '@storybook/addon-docs/blocks';
2+
3+
<Meta title="Tutorials/Select" />
4+
5+
# Select
6+
7+
```sh
8+
https://www.robinwieruch.de/react-table-select/
9+
```
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Meta } from '@storybook/addon-docs/blocks';
2+
3+
<Meta title="Tutorials/Server-Side Table" />
4+
5+
# Server-Side Table
6+
7+
```sh
8+
https://www.robinwieruch.de/react-server-side-table/
9+
```
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Meta } from '@storybook/addon-docs/blocks';
2+
3+
<Meta title="Tutorials/Sort" />
4+
5+
# Sort
6+
7+
```sh
8+
https://www.robinwieruch.de/react-table-sort/
9+
```

0 commit comments

Comments
 (0)