Assets for Location Insight App
import React from 'react';
import CoreAssets from '@antv/li-core-assets';
import { LocationInsightEditor } from '@antv/li-editor';
import defaultApplication from './application';
const assets = [CoreAssets];
export default () => {
return (
<LocationInsightEditor
style={{ height: '100vh' }}
defaultApplication={defaultApplication}
assets={assets}
onChange={(app) => {}}
/>
);
};