Skip to content
This repository was archived by the owner on Mar 18, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/app/_common/components/sidebarConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
FiCpu,
FiSettings,
FiEye,
FiFile,
} from 'react-icons/fi';
import { SidebarItem } from '@/app/main/components/types';

Expand Down Expand Up @@ -40,6 +41,12 @@ export const getSidebarItems = (): SidebarItem[] => [
description: '백엔드 환경변수 및 설정 확인',
icon: React.createElement(FiEye),
},
{
id: 'documents',
title: '문서',
description: '문서 저장소',
icon: React.createElement(FiFile),
},
];

// 공통 아이템 클릭 핸들러 (localStorage 사용)
Expand Down
Loading
Loading