New source found from dndbeyond.com
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
import clsx from "clsx";
|
||||
import React from "react";
|
||||
import { PureComponent, PropsWithChildren } from "react";
|
||||
|
||||
interface Props {
|
||||
className?: string,
|
||||
interface Props extends PropsWithChildren {
|
||||
className?: string;
|
||||
}
|
||||
export default class EditorBox extends React.PureComponent<Props> {
|
||||
export default class EditorBox extends PureComponent<Props> {
|
||||
render() {
|
||||
const { children, className } = this.props;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user