react-sidebar-v1-master
This commit is contained in:
25
src/components/SidebarData.tsx
Normal file
25
src/components/SidebarData.tsx
Normal file
@ -0,0 +1,25 @@
|
||||
import React from 'react';
|
||||
import * as FaIcons from 'react-icons/fa';
|
||||
import * as AiIcons from 'react-icons/ai';
|
||||
import * as IoIcons from 'react-icons/io';
|
||||
|
||||
export const SidebarData = [
|
||||
{
|
||||
title: 'Home',
|
||||
path: '/',
|
||||
icon: <AiIcons.AiFillHome />,
|
||||
cName: 'nav-text'
|
||||
},
|
||||
{
|
||||
title: 'Flights',
|
||||
path: '/flights',
|
||||
icon: <IoIcons.IoIosPaper />,
|
||||
cName: 'nav-text'
|
||||
},
|
||||
{
|
||||
title: 'Seasons',
|
||||
path: '/seasons',
|
||||
icon: <FaIcons.FaCartPlus />,
|
||||
cName: 'nav-text'
|
||||
}
|
||||
];
|
||||
Reference in New Issue
Block a user