Socket
Socket
Sign inDemoInstall

loading-skeleton-react

Package Overview
Dependencies
5
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    loading-skeleton-react

React Loading Skeletons is a package for loading skeleton for your website


Version published
Weekly downloads
0
Maintainers
1
Install size
7.03 kB
Created
Weekly downloads
 

Readme

Source
  npm i loading-skeleton-react
  pnpm i loading-skeleton-react
  yarn i loading-skeleton-react
// App.jsx;
import { Skeleton } from "loading-skeleton-react"
import "loading-skeleton-react/dist/index.css";

import Component from "@/component/component"


const App = () => {
  const [loading, setLoading] = useState(undefined)

 
  return (
    <>
      {loading ? 
        <Skeleton mode="dark"  />
       : (
        <Component />
       )}
    </>
  );
}
 
export default App;

Keywords

FAQs

Last updated on 24 Mar 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc