1
0
Fork 0

refactor(components): Removed prop-types dependency

This commit is contained in:
Joost De Cock 2020-04-25 19:09:02 +02:00
parent 8cf8424437
commit cda9b03713
44 changed files with 559 additions and 1026 deletions

View file

@ -1,5 +1,4 @@
import React from 'react'
import PropTypes from 'prop-types'
import { strings } from '@freesewing/i18n'
const TextOnPath = (props) => {
@ -29,9 +28,4 @@ const TextOnPath = (props) => {
)
}
TextOnPath.propTypes = {
path: PropTypes.object.isRequired,
language: PropTypes.string.isRequired
}
export default TextOnPath