I'm using Typescript and when I try to do <Split className="something"></Split>, it throws me an error saying that there is no such thing defined in the props.
Could the solution be just adding the line className?: PropTypes.string to the appropiate place?
I'm using Typescript and when I try to do
<Split className="something"></Split>
, it throws me an error saying that there is no such thing defined in the props.Could the solution be just adding the line
className?: PropTypes.string
to the appropiate place?