mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 11:08:45 +08:00
demo: simplify demos (#45585)
This commit is contained in:
parent
31393135a0
commit
67c8e8b259
@ -12,7 +12,6 @@ const content = (
|
||||
const buttonWidth = 80;
|
||||
|
||||
const App: React.FC = () => {
|
||||
const options = ['Show', 'Hide', 'Center'];
|
||||
const [arrow, setArrow] = useState('Show');
|
||||
|
||||
const mergedArrow = useMemo(() => {
|
||||
@ -36,7 +35,7 @@ const App: React.FC = () => {
|
||||
}}
|
||||
>
|
||||
<Segmented
|
||||
options={options}
|
||||
options={['Show', 'Hide', 'Center']}
|
||||
onChange={(val: string) => {
|
||||
setArrow(val);
|
||||
}}
|
||||
|
@ -6,7 +6,6 @@ const text = <span>prompt text</span>;
|
||||
const buttonWidth = 80;
|
||||
|
||||
const App: React.FC = () => {
|
||||
const options = ['Show', 'Hide', 'Center'];
|
||||
const [arrow, setArrow] = useState('Show');
|
||||
|
||||
const mergedArrow = useMemo(() => {
|
||||
@ -31,7 +30,7 @@ const App: React.FC = () => {
|
||||
>
|
||||
<Segmented
|
||||
value={arrow}
|
||||
options={options}
|
||||
options={['Show', 'Hide', 'Center']}
|
||||
onChange={(val: string) => {
|
||||
setArrow(val);
|
||||
}}
|
||||
|
Loading…
Reference in New Issue
Block a user