fix broken imports
This commit is contained in:
parent
30fa1aaca1
commit
400efff3a1
2 changed files with 6 additions and 6 deletions
|
|
@ -15,13 +15,13 @@ import { getKeyHandler } from "./shortcut_handler";
|
||||||
import { BottomPanel } from "./BottomPanel";
|
import { BottomPanel } from "./BottomPanel";
|
||||||
import { emptyState } from "@/statecharts/concrete_syntax";
|
import { emptyState } from "@/statecharts/concrete_syntax";
|
||||||
import { PersistentDetails } from "./PersistentDetails";
|
import { PersistentDetails } from "./PersistentDetails";
|
||||||
import { DigitalWatchPlant } from "@/Plant/DigitalWatch/DigitalWatch";
|
import { DigitalWatchPlant } from "./Plant/DigitalWatch/DigitalWatch";
|
||||||
import { DummyPlant } from "@/Plant/Dummy/Dummy";
|
import { DummyPlant } from "./Plant/Dummy/Dummy";
|
||||||
import { Plant } from "@/Plant/Plant";
|
import { Plant } from "./Plant/Plant";
|
||||||
import { usePersistentState } from "@/App/persistent_state";
|
import { usePersistentState } from "./persistent_state";
|
||||||
import { RTHistory } from "./RTHistory";
|
import { RTHistory } from "./RTHistory";
|
||||||
import { detectConnections } from "@/statecharts/detect_connections";
|
import { detectConnections } from "@/statecharts/detect_connections";
|
||||||
import { MicrowavePlant } from "@/Plant/Microwave/Microwave";
|
import { MicrowavePlant } from "./Plant/Microwave/Microwave";
|
||||||
|
|
||||||
export type EditHistory = {
|
export type EditHistory = {
|
||||||
current: VisualEditorState,
|
current: VisualEditorState,
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
import { Dispatch, ReactElement, SetStateAction } from "react";
|
import { Dispatch, ReactElement, SetStateAction } from "react";
|
||||||
import logo from "../../artwork/logo-playful.svg";
|
import logo from "../../../artwork/logo-playful.svg";
|
||||||
|
|
||||||
export function About(props: {setModal: Dispatch<SetStateAction<ReactElement|null>>}) {
|
export function About(props: {setModal: Dispatch<SetStateAction<ReactElement|null>>}) {
|
||||||
return <div style={{maxWidth: '500px', padding: 4}}>
|
return <div style={{maxWidth: '500px', padding: 4}}>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue