Demo.tsx 167 B

12345678910
  1. import React from 'react';
  2. import Spin from '../index';
  3. const Demo = () => {
  4. return (
  5. <Spin size="large" tip="hahahahahah" />
  6. )
  7. }
  8. export default Demo