
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.
react-dashboard-skeleton
Advanced tools
react-dashboard-skeleton provides you a basic skeleton UI for dashboard containing navbar and sidebar along with basic routes. You can modify the routes based on your needs. The content section will be changing based on the routes clicked on the sidebar
react-dashboard-skeleton provides you a basic skeleton UI for dashboard containing navbar and sidebar along with basic routes. You can modify the routes based on your needs. The content section will be changing based on the routes clicked on the sidebar
npm install --save react-dashboard-skeleton
yarn add react-dashboard-skeleton
import React from 'react'
import { DashboardSkeleton } from 'react-dashboard-skeleton'
import 'react-dashboard-skeleton/dist/index.css'
import Dashboard from './dashboard'
import About from './about'
import Reports from './reports'
const navProps = {
showNav : true,
customStyles : {},
titleComponentType : 'text', // logo , text => these types could be passed to display on top of the nav bar
title : 'My Dashboard',
// logoUrl : '' ## Pass this param if the titleComponentType is "logo"
}
const sidebarProps = {
menu : [
{
path: "/",
name: "Dashboard", //Name of the menu
iconUrl: '',
roles: [0,1,2], // You can set user roles who has the access to the page
element : <Dashboard/> // Component
},
{
path: "/about",
name: "About", //Name of the menu
iconUrl: '',
roles: [0,1,2], // You can set user roles who has the access to the page
element : <About/> // Component
},
{
path: "/reports",
name: "Reports", //Name of the menu
iconUrl: '',
roles: [0,1], // You can set user roles who has the access to the page
element : <Reports/> // Component
}
]
}
const App = () => {
return <DashboardSkeleton navProps={navProps} sidebarProps={sidebarProps}/>
}
export default App
FAQs
react-dashboard-skeleton provides you a basic skeleton UI for dashboard containing navbar and sidebar along with basic routes. You can modify the routes based on your needs. The content section will be changing based on the routes clicked on the sidebar
The npm package react-dashboard-skeleton receives a total of 1 weekly downloads. As such, react-dashboard-skeleton popularity was classified as not popular.
We found that react-dashboard-skeleton demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.