removes unnecessary code from packs/settings/index.jsx

This commit is contained in:
Toni Dezman 2017-07-27 14:22:28 +02:00
parent 0f4286d5d1
commit d781ff9b2d

View file

@ -4,20 +4,11 @@
import React from 'react'
import ReactDOM from 'react-dom'
// import PropTypes from 'prop-types'
const Settings = () => (
<div>Settings page</div>
)
// Settings.defaultProps = {
// name: 'David'
// }
// Settings.propTypes = {
// name: PropTypes.string
// }
document.addEventListener('DOMContentLoaded', () => {
ReactDOM.render(
<Settings />,