
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
mscodepl-react-sidebar
Advanced tools
compitable with react js and next js.
npm install react-icons mscodepl-react-sidebar
import 'mscodepl-react-sidebar/react-sidebar/dist/react-sidebar.css';
(React Js Project)
import { FiBox, FiActivity, FiAirplay, FiAperture } from "react-icons/fi";
import { BrowserRouter, Route, Routes } from 'react-router-dom';
import { SidebarWrapper, PageWrapper, createReactNavLink } from 'mscodepl-react-sidebar';
const App=()=>{
const navItems: (() => JSX.Element)[] = [
createReactNavLink(NavLink, "Options", "#", <FiBox />, [
{
icon: <FiList />,
title: "List",
to: "/list"
}, {
icon: <FiActivity />,
title: "Create New",
to: "/create"
}, {
icon: <FiAirplay />,
title: "Edit Now",
to: "/edit"
}
]),
createReactNavLink(NavLink, "About", "/about", <FiAperture />),
]
return <>
<SidebarWrapper
logoUrl='https://mscode.pl/assets/img/Sygnet%20Niebieski.png'
userName='MsCode'
userEmail='example@gmail.com' // user email for gravatar
navItems={navItems}
activeStyle="outline" //fill , outline
onLogOut={() => { }}
onLogoClick={() => { }}
onProfileImgClick={() => { }}
>
<BrowserRouter>
<Routes>
<Route path='/' element={<PageWrapper className="bg-green">
home page
</PageWrapper>} />
<Route path='/list' element={<ListPage />} />
<Route path='/create' element={<CreateNewPage />} />
<Route path='/edit' element={<EditPage />} />
<Route path='/about' element={<PageWrapper>
about page
</PageWrapper>} />
</Routes>
</BrowserRouter>
</SidebarWrapper>
</>
}
(Next Js Project)
// _App.js file
import 'mscodepl-react-sidebar/dist/react-sidebar.css'
import { SidebarWrapper, createNextNavLink } from 'mscodepl-react-sidebar'
import { FiBox, FiAperture } from 'react-icons/fi'
import NextLink from 'next/link'
function MyApp({ Component, pageProps }) {
const navItems = [
createNextNavLink(NextLink, "Home", "/", <FiBox />),
createNextNavLink(NextLink, "Options", "#", <FiBox />, [
{
icon: <FiBox />,
title: "List",
to: "/list"
}, {
icon: <FiBox />,
title: "Create Now",
to: "/create"
},
]),
createNextNavLink(NextLink, "About", "/about", <FiAperture />),
]
return <SidebarWrapper
logoUrl='https://mscode.pl/assets/img/Sygnet%20Niebieski.png'
userName='MsCode'
userEmail='example@gmail.com' // user email for gravatar
navItems={navItems}
activeStyle="outline" //fill , outline
onLogOut={() => { }}
onLogoClick={() => { }}
onProfileImgClick={() => { }}
>
<Component {...pageProps} />
</SidebarWrapper>
}
export default MyApp
in other next js page
// page/about.js
import { PageWrapper } from 'mscodepl-react-sidebar'
import React from 'react'
export default function about() {
return (
<PageWrapper className="bg-green">
<h1>about page</h1>
</PageWrapper>
)
}
screenshot

THIS IS FORK OF @milon27/react-sidebar
FAQs
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.