mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
11 lines
213 B
JavaScript
11 lines
213 B
JavaScript
import PropTypes from 'prop-types'
|
|
|
|
const propTypesTag = PropTypes.shape({
|
|
// Base
|
|
name: PropTypes.string.isRequired,
|
|
url: PropTypes.string.isRequired
|
|
// history prop-types
|
|
})
|
|
|
|
export default propTypesTag
|