Skip to content

Commit

Permalink
Fix import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
aemandine committed Aug 19, 2024
1 parent 1338f6c commit fbdc96b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {action} from "@storybook/addon-actions";

import {PhetSimEditor} from "../phet-sim-editor";
import PhetSimEditor from "../phet-sim-editor";

import type {Meta, StoryObj} from "@storybook/react";

Expand Down
2 changes: 1 addition & 1 deletion packages/perseus-editor/src/widgets/phet-sim-editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import BlurInput from "../components/blur-input";

type PhetSimEditorProps = any;

export class PhetSimEditor extends React.Component<PhetSimEditorProps> {
class PhetSimEditor extends React.Component<PhetSimEditorProps> {
static propTypes = {
...Changeable.propTypes,
};
Expand Down

0 comments on commit fbdc96b

Please sign in to comment.