import React from 'react'; import { DatePicker, Space, Button } from '../../../index'; InputFormat.storyName = '输入部分日期,回显在面板上'; /** * 优化 input format */ export default function InputFormat() { const handleChange = (...args) => { console.log('change', ...args); }; return (
); }