misc_pterodactyl-panel/resources/scripts/components/elements/inputs/index.ts

14 lines
311 B
TypeScript
Raw Normal View History

2022-07-02 21:24:24 +00:00
import Checkbox from '@/components/elements/inputs/Checkbox';
import InputField from '@/components/elements/inputs/InputField';
const Input = Object.assign(
{},
{
Text: InputField,
Checkbox: Checkbox,
}
);
export { Input };
export { default as styles } from './styles.module.css';