1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-25 03:14:01 +01:00
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