Skip to content

Commit

Permalink
Merge pull request #108 from arielshulman/fix/remove-defaultprops
Browse files Browse the repository at this point in the history
DefaultProps is deprecated - remove from code.
  • Loading branch information
nbudin authored Jan 21, 2024
2 parents 7f5dcf7 + 98e53f5 commit 117f769
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions src/BlocklyWorkspace.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import PropTypes from "prop-types";
import useBlocklyWorkspace from "./useBlocklyWorkspace";
import {BlocklyWorkspaceProps} from "./BlocklyWorkspaceProps";
import { BlocklyWorkspaceProps } from "./BlocklyWorkspaceProps";

const propTypes = {
initialXml: PropTypes.string,
Expand All @@ -18,21 +18,6 @@ const propTypes = {
onDispose: PropTypes.func,
};

const defaultProps = {
initialXml: null,
initialJson: null,
toolboxConfiguration: null,
workspaceConfiguration: null,
className: null,
onWorkspaceChange: null,
onImportXmlError: null,
onImportError: null,
onXmlChange: null,
onJsonChange: null,
onInject: null,
onDispose: null,
};

function BlocklyWorkspace({
initialXml,
initialJson,
Expand Down Expand Up @@ -81,6 +66,5 @@ function BlocklyWorkspace({
}

BlocklyWorkspace.propTypes = propTypes;
BlocklyWorkspace.defaultProps = defaultProps;

export default BlocklyWorkspace;

0 comments on commit 117f769

Please sign in to comment.