mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 17:04:58 +01:00
17 lines
504 B
JavaScript
17 lines
504 B
JavaScript
import React from 'react';
|
|
|
|
import 'ui/styles/global/index.less';
|
|
import AppTabs from "./AppTabs";
|
|
import {StreamsContext} from "ui/streamsContext";
|
|
import {AppContext} from "./AppContext";
|
|
import {Debugger} from "debugger/Debugger";
|
|
|
|
export default function WebApplication(props) {
|
|
const {appContext} = props;
|
|
return <StreamsContext.Provider value={appContext}>
|
|
<Debugger />
|
|
<AppContext.Provider value={appContext}>
|
|
<AppTabs/>
|
|
</AppContext.Provider>
|
|
</StreamsContext.Provider>
|
|
}
|