2022-05-01 10:53:53 -07:00
|
|
|
import React from 'react';
|
|
|
|
|
2022-11-15 11:00:40 -08:00
|
|
|
import PlaceholderStatus from './placeholder-status';
|
2022-05-01 10:53:53 -07:00
|
|
|
|
|
|
|
/** Fake material status to display while data is loading. */
|
|
|
|
const PlaceholderMaterialStatus: React.FC = () => {
|
|
|
|
return (
|
|
|
|
<div className='material-status' tabIndex={-1} aria-hidden>
|
|
|
|
<div className='material-status__status' tabIndex={0}>
|
|
|
|
<PlaceholderStatus />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default PlaceholderMaterialStatus;
|