([])
const [total, setTotal] = useState(0)
const [offset, setOffset] = useState(0)
@@ -279,9 +279,8 @@ function FloatHistory({ type }: { type: CountType }) {
export function FloatManagement() {
const tabs: Array<{ path: string; label: string; type: CountType }> = [
- { path: 'petty-cash', label: 'Petty Cash', type: 'petty_cash' },
- { path: 'change-tin', label: 'Change Tin', type: 'change_tin' },
- { path: 'safe-cash', label: 'Safe Cash', type: 'safe_cash' },
+ { path: 'petty-cash', label: 'Petty Cash', type: 'petty_cash' },
+ { path: 'change-tin', label: 'Change Tin', type: 'change_tin' },
]
return (
diff --git a/frontend/src/pages/SafeCount.tsx b/frontend/src/pages/SafeCount.tsx
new file mode 100644
index 0000000..caa2fa1
--- /dev/null
+++ b/frontend/src/pages/SafeCount.tsx
@@ -0,0 +1,14 @@
+import { Routes, Route, Navigate } from 'react-router-dom'
+import { FloatCountForm, FloatHistory } from './FloatManagement'
+
+export function SafeCount() {
+ return (
+
+
+ } />
+ } />
+ } />
+
+
+ )
+}