about summary refs log tree commit diff
path: root/src/components/Other
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Other')
-rw-r--r--src/components/Other/NoData.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/Other/NoData.tsx b/src/components/Other/NoData.tsx
new file mode 100644
index 0000000..c1236c1
--- /dev/null
+++ b/src/components/Other/NoData.tsx
@@ -0,0 +1,9 @@
+export default function NoData() {
+	return (
+		<>
+			<div className="block bg-white-500 border border-gray-200 rounded-lg shadow">
+				<div>No data</div>
+			</div>
+		</>
+	)
+}