mirror of
https://github.com/HackPlan/UUI.git
synced 2026-01-13 07:09:35 +08:00
13 lines
510 B
Plaintext
13 lines
510 B
Plaintext
import { Meta, Canvas, Story } from '@storybook/addon-docs/blocks';
|
|
import ReactMarkdown from 'react-markdown';
|
|
import { useState } from 'react';
|
|
import { Stepper, Slider, Switch, TextField } from '../../src';
|
|
import { ComponentComparator } from '../utils/ComponentComparator';
|
|
import GettingStarted from '../../docs/USING_CUSTOMIZE.zh-CN.md';
|
|
|
|
|
|
<Meta title="文档/使用自定义功能 Using Customize" />
|
|
|
|
<div className="markdown-body">
|
|
<ReactMarkdown source={GettingStarted} escapeHtml={false} />
|
|
</div> |