create sidebar responsive - create header

This commit is contained in:
Alihaghighattalab
2024-08-06 13:41:27 +03:30
parent 66c89cf14f
commit 49b25481ce
9 changed files with 191 additions and 1 deletions
+9
View File
@@ -1,3 +1,5 @@
import React from "react"
export interface LoginFormInterface {
phoneNumber: string,
password: string
@@ -34,3 +36,10 @@ export interface RegisterInterface {
repeatPassword: string,
}
export interface SidebarInterface {
name: string,
title: string,
route: string,
icon: React.ReactNode,
activeIcon: React.ReactNode
}