feat: add capabilities

This commit is contained in:
Morten Olsen
2023-09-26 09:08:08 +02:00
parent a81afc9221
commit c00b073d37
43 changed files with 3284 additions and 305 deletions

View 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 };