build: setup turbo repo

This commit is contained in:
pablohashescobar 2022-11-30 02:21:17 +05:30
parent 976e5b9c27
commit ba47c273b1
148 changed files with 3177 additions and 515 deletions

View file

@ -0,0 +1,43 @@
import React from "react";
// types
import { Props } from "./types";
const Select: React.FC<Props> = ({
id,
label,
value,
className,
name,
register,
disabled,
validations,
error,
options,
}) => {
return (
<>
{label && (
<label htmlFor={id} className="text-gray-500 mb-2">
{label}
</label>
)}
<select
id={id}
name={name}
value={value}
{...(register && register(name, validations))}
disabled={disabled}
className="mt-1 block w-full px-3 py-2 text-base border border-gray-300 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm rounded-md bg-transparent"
>
{options.map((option, index) => (
<option value={option.value} key={index}>
{option.label}
</option>
))}
</select>
{error?.message && <div className="text-red-500 text-sm">{error.message}</div>}
</>
);
};
export default Select;

19
apps/app/ui/Select/types.d.ts vendored Normal file
View file

@ -0,0 +1,19 @@
import type {
UseFormRegister,
RegisterOptions,
FieldError,
} from "react-hook-form";
export type Props = {
label?: string;
id: string;
name: string;
value?: string | number | readonly string[];
className?: string;
register?: UseFormRegister<any>;
disabled?: boolean;
validations?: RegisterOptions;
error?: FieldError;
autoComplete?: "on" | "off";
options: { label: string; value: any }[];
};