LOCKING盒子版
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

fileStatus.md 488 B

1234567891011121314
  1. ```jsx
  2. import React from 'react';
  3. import FileStatus from '@/components/FileStatus';
  4. export default () => (
  5. <>
  6. <FileStatus type="upload" loadingState="loading" progress={30} />
  7. <FileStatus type="upload" loadingState="complete" result="success" />
  8. <FileStatus type="upload" loadingState="complete" result="fail" />
  9. <FileStatus type="download" loadingState="complete" result="success" />
  10. <FileStatus type="download" loadingState="complete" result="fail" />
  11. </>
  12. )
  13. ```