mirror of
https://github.com/morten-olsen/bob.git
synced 2026-02-08 01:46:29 +01:00
20 lines
374 B
TypeScript
20 lines
374 B
TypeScript
import { Graph } from '../../presenters/graph';
|
|
import { NodeView } from './node';
|
|
import { NodesView } from './nodes';
|
|
|
|
type ExperimentViewProps = {
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
const ExperimentView: React.FC<ExperimentViewProps> = ({ children }) => {
|
|
return (
|
|
<>
|
|
<Graph />
|
|
<NodesView />
|
|
<NodeView />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export { ExperimentView };
|