Fixed ts-ignore in animation mdx component

This commit is contained in:
Piotr Janosz
2019-08-14 01:41:16 +02:00
committed by fabioberger
parent 4ce7bf56e7
commit f2e0fe49f7

View File

@@ -1,6 +1,6 @@
import * as React from 'react';
// @ts-ignore
const AnimationLoader = React.lazy(() =>
const AnimationLoader = React.lazy(async () =>
import('ts/components/docs/animations/animation_loader').then(({ AnimationLoader }) => ({
default: AnimationLoader,
})),