mirror of
https://github.com/morten-olsen/bob.git
synced 2026-02-08 01:46:29 +01:00
feat: add capabilities
This commit is contained in:
19
packages/playground/src/containers/experiment/view.tsx
Normal file
19
packages/playground/src/containers/experiment/view.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
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 };
|
||||
Reference in New Issue
Block a user