1
0
Fork 0
blog/src/components/atoms/Input.jsx

7 lines
159 B
React
Raw Normal View History

2018-08-25 11:15:40 +02:00
import React from 'react'
import styles from './Input.module.scss'
const Input = props => <input className={styles.input} {...props} />
export default Input