Reconmap/web-client

View on GitHub
src/components/form/NativeInput.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import styles from './NativeInput.module.scss';

const NativeInput = ({ children, ...props }: any) => {
    return <input className={styles.native} {...props} />
}

export default NativeInput;