1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import React from "react"; import TimelineTop from "./TimelineTop"; const TimelineLoading: React.FC = () => { return ( <TimelineTop className="timeline-top-loading-enter" height={100} lineProps={{ center: "loading", startSegmentLength: 56, }} /> ); }; export default TimelineLoading;