* feat: adding create bot functionality Signed-off-by: James <james@jan.ai> * update the temperature progress bar Signed-off-by: James <james@jan.ai> * chore: remove tgz Signed-off-by: James <james@jan.ai> * update core dependency Signed-off-by: James <james@jan.ai> * fix e2e test Signed-off-by: James <james@jan.ai> --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai>
25 lines
619 B
TypeScript
25 lines
619 B
TypeScript
import React from "react"
|
|
import LeftContainer from "../LeftContainer"
|
|
import LeftRibbonNav from "../LeftRibbonNav"
|
|
import MonitorBar from "../MonitorBar"
|
|
import RightContainer from "../RightContainer"
|
|
import CenterContainer from "../CenterContainer"
|
|
|
|
const MainContainer: React.FC = () => (
|
|
<div className="flex h-screen">
|
|
<LeftRibbonNav />
|
|
|
|
<div className="flex flex-1 flex-col h-full">
|
|
<div className="flex flex-1 overflow-hidden">
|
|
<LeftContainer />
|
|
<CenterContainer />
|
|
<RightContainer />
|
|
</div>
|
|
|
|
<MonitorBar />
|
|
</div>
|
|
</div>
|
|
)
|
|
|
|
export default MainContainer
|