import * as React from 'react'; import { Skeleton, Image, List } from '@fluentui/react-northstar'; import { useBooleanKnob } from '@fluentui/docs-components'; import * as _ from 'lodash'; const SkeletonExampleList = () => { const [loading] = useBooleanKnob({ name: 'Loading', initialValue: true, }); return ( {_.times(5, index => ( ) : ( ) } header={ loading ? ( ) : ( 'Irving Kuhic' ) } content={ loading ? ( ) : ( 'Program the sensor to the SAS alarm through the haptic SQL card!' ) } headerMedia={loading ? '' : '7:26:56 AM'} index={index} /> ))} ); }; export default SkeletonExampleList;