New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@c8s/breadcrumb

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@c8s/breadcrumb

0.0.2
npm
Version published
Weekly downloads
2
-33.33%
Maintainers
2
Weekly downloads
 
Created
Source

@c8s/breadcrumb

github npm:version typescript license browserslist code style:prettier

Usage

/**
 * As to prepare of using the `Breadcrumb`
 * 
 * ```sh
 * yarn add @c8s/breadcrumb @c8s/theme react @types/react styled-components @types/styled-components
 * ```
 */
import Breadcrumb from '@c8s/breadcrumb';
import {Theme, theme} from '@c8s/theme';

Example

() => (
  <Theme theme={theme}>
    {/* ... */}
      <Breadcrumb>
        <a href="...">Home</a>
        <a href="...">List</a>
        <a href="..." aria-selected={true}>Detail</a>
      </Breadcrumb>
    {/* ... */}
  </Theme>
);

In NextJS

import Link from 'next/link';

() => (
   <Theme theme={theme}>
    {/* ... */}
      <Breadcrumb>
        <Link>
          <a href="...">Home</a>
        </Link>
        <Link>
          <a href="...">List</a>
        </Link>
        <Link>
          <a href="..." aria-selected={true}>Detail</a>
        </Link>
      </Breadcrumb>
    {/* ... */}
  </Theme> 
)

Contributors

Thanks goes to these wonderful people (emoji key):



📖

Aki-Japan

📖

This project follows the all-contributors specification. Contributions of any kind welcome!

FAQs

Package last updated on 01 Jan 2019

Did you know?

Socket

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