mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-24 03:45:59 +00:00
14 lines
249 B
JavaScript
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>
|
|
);
|
|
}
|