File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ import VwcOption from '../../dist/v3/VwcOption'
66import VwcRadio from '../../dist/v3/VwcRadio'
77import VwcTooltip from '../../dist/v3/VwcTooltip'
88import VwcRadioGroup from '../../dist/v3/VwcRadioGroup'
9+ import VwcDataGrid from '../../dist/v3/VwcDataGrid'
10+ import VwcDataGridRow from '../../dist/v3/VwcDataGridRow'
11+ import VwcDataGridCell from '../../dist/v3/VwcDataGridCell'
912import { initVivid } from '../../src/initialization/initVivid'
1013
1114export const VwcBadge_ = ( ) =>
@@ -46,6 +49,19 @@ export const VwcTooltip_ = () =>
4649 />
4750 </ >
4851
52+ export const VwcDataGrid_ = ( ) =>
53+ < >
54+ < VwcDataGrid >
55+ < VwcDataGridRow type = "rowheader" >
56+ < VwcDataGridCell > Header 1</ VwcDataGridCell >
57+ < VwcDataGridCell > Header 2</ VwcDataGridCell >
58+ </ VwcDataGridRow >
59+ < VwcDataGridRow >
60+ < VwcDataGridCell > Row 1 Cell 1</ VwcDataGridCell >
61+ < VwcDataGridCell > Row 1 Cell 2</ VwcDataGridCell >
62+ </ VwcDataGridRow >
63+ </ VwcDataGrid >
64+ </ >
4965export default {
5066 title : 'V3' ,
5167 decorators : [
You can’t perform that action at this time.
0 commit comments