mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-17 13:46:47 +02:00
We're migrating to ESM, which will allow us to import the latest versions of our dependencies. Co-Authored-By: Christopher Kolstad <chriswk@getunleash.io>
6 lines
120 B
TypeScript
6 lines
120 B
TypeScript
import { lazy } from 'react';
|
|
|
|
export const LazyFeatureView = lazy(
|
|
() => import('./FeatureViewLazyExport.tsx'),
|
|
);
|