mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-16 05:23:19 +01:00
20 lines
No EOL
480 B
JavaScript
20 lines
No EOL
480 B
JavaScript
import React from 'react';
|
|
import decoratorChain from 'ui/decoratorChain';
|
|
import connect from 'ui/connect';
|
|
import mapContext from 'ui/mapContext';
|
|
import {combine} from 'lstream';
|
|
import ObjectExplorer from '../../craft/ui/ObjectExplorer';
|
|
import ls from './Explorer.less';
|
|
|
|
function Explorer() {
|
|
return <div className={ls.root}>
|
|
<ObjectExplorer />
|
|
</div>;
|
|
}
|
|
|
|
export default decoratorChain(
|
|
connect(streams => combine(
|
|
|
|
)),
|
|
mapContext(ctx => ({}))
|
|
)(Explorer); |