1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2025-02-16 20:53:57 +00:00
pds-2021-g2-nest/code/frontend/src/components/Input.js

13 lines
305 B
JavaScript
Raw Normal View History

2021-04-21 03:57:18 +02:00
import React from "react"
import Style from "./Input.module.css"
import classNames from "classnames"
export default function Input({ children, className, ...props }) {
return (
<input className={classNames(Style.Input, className)} {...props}>
{children}
</input>
)
}