Álvaro Valenzuela Valdes commited on
Commit ·
b61d95b
1
Parent(s): a4c7d51
fix: Add missing useState import in Sidebar
Browse files
frontend/components/Sidebar.tsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
"use client";
|
| 2 |
import { translations, Language } from "../lib/translations";
|
| 3 |
|
| 4 |
-
import
|
| 5 |
|
| 6 |
type SidebarTab =
|
| 7 |
| "Dashboard"
|
|
|
|
| 1 |
"use client";
|
| 2 |
import { translations, Language } from "../lib/translations";
|
| 3 |
|
| 4 |
+
import { useState, type Dispatch, type SetStateAction } from "react";
|
| 5 |
|
| 6 |
type SidebarTab =
|
| 7 |
| "Dashboard"
|