diff --git a/src/components/AdminPage/Wristband/Location/ListItem.js b/src/components/AdminPage/Wristband/Location/ListItem.js
new file mode 100644
index 0000000..292ac08
--- /dev/null
+++ b/src/components/AdminPage/Wristband/Location/ListItem.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import { Table, Button } from 'semantic-ui-react';
+
+const ListItem = ({ i18n, data, delLocation, editLocation }) => {
+
+ return (
+
+
+
+ {data.serialnumber}
+ {data.name}
+
+ )
+}
+
+export default ListItem;
\ No newline at end of file
diff --git a/src/components/AdminPage/Wristband/Location/LocationModal.js b/src/components/AdminPage/Wristband/Location/LocationModal.js
new file mode 100644
index 0000000..7413303
--- /dev/null
+++ b/src/components/AdminPage/Wristband/Location/LocationModal.js
@@ -0,0 +1,46 @@
+import React from 'react';
+import { Modal, Form, Input, Button, Checkbox, Grid } from 'semantic-ui-react';
+
+const WristbandModal = ({ i18n, open, type, data, closeModal, submitModal }) => {
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ { closeModal() }} />
+
+
+
+
+
+ )
+}
+export default WristbandModal;
\ No newline at end of file