🚧 Progress on workbench
This commit is contained in:
parent
1a8fe110f8
commit
158c19ae1d
101 changed files with 1222 additions and 200 deletions
9
packages/components/src/Draft/Defs/index.js
Normal file
9
packages/components/src/Draft/Defs/index.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
import React, { useState } from "react";
|
||||
import PropTypes from "prop-types";
|
||||
|
||||
const Defs = props => <defs>{props.defs}</defs>;
|
||||
|
||||
Defs.propTypes = { defs: PropTypes.string };
|
||||
Defs.defaultProps = { defs: "" };
|
||||
|
||||
export default Defs;
|
Loading…
Add table
Add a link
Reference in a new issue