Files
dbgate/packages/web/src/utility/inputs.js
2020-02-03 19:43:11 +01:00

14 lines
249 B
JavaScript

import React from 'react';
export function TextField({ ...other }) {
return <input type="text" {...other}></input>;
}
export function SelectField({ children, ...other }) {
return (
<select {...other}>
{children}
</select>
);
}