Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[choreo] 2025 graph panel #705

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Draft
3 changes: 3 additions & 0 deletions src/Body.tsx
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@ import Field from "./components/field/Field";
import Sidebar from "./components/sidebar/Sidebar";
import AppMenu from "./AppMenu";
import PathAnimationPanel from "./components/field/PathAnimationPanel";
import GraphPanel from "./components/field/graph/GraphPanel";

type Props = object;

@@ -25,6 +26,7 @@ class Body extends Component<Props, State> {
flexDirection: "row",
flexGrow: 1,
height: 0,
maxHeight: "100%",
width: "100%"
}}
>
@@ -42,6 +44,7 @@ class Body extends Component<Props, State> {
</span>
</span>
<PathAnimationPanel></PathAnimationPanel>
<GraphPanel></GraphPanel>
</div>
</div>
</>
Loading