Browse Source

Componente select para forms

wilitp 4 năm trước cách đây
mục cha
commit
58be0b8277
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  1. 7 0
      app/src/components/UI/forms/select.tsx

+ 7 - 0
app/src/components/UI/forms/select.tsx

@@ -0,0 +1,7 @@
+import React, { FC } from "react";
+
+const Select: FC = () => {
+  return <select id="" name=""></select>;
+};
+
+export default Select;