mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-25 03:14:01 +01:00
7 lines
159 B
JavaScript
7 lines
159 B
JavaScript
import React from 'react'
|
|
import styles from './Input.module.scss'
|
|
|
|
const Input = props => <input className={styles.input} {...props} />
|
|
|
|
export default Input
|