Fix preloader

This commit is contained in:
ShimaginAndrey 2021-10-05 13:58:56 +03:00
parent b4b013f68a
commit cbad61c6c5

View file

@ -16,9 +16,9 @@ const AddTable = props => {
}
return (
<div className={'table-styles dataview'}>
<Fragment>
<div className="preload"></div>
<div className={'table-styles dataview'}>
<ul className="row">
{styles.map((style, index) => {
return (
@ -31,6 +31,7 @@ const AddTable = props => {
</ul>
{onReadyStyles()}
</div>
</Fragment>
)
};