Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@bigcommerce/big-design-patterns
Advanced tools
BigDesign React Patterns.
You can find documentation and examples on our docs page.
Add @bigcommerce/big-design
, @bigcommerce/big-design-patterns
and styled-components@5
to your project using npm
:
npm install @bigcommerce/big-design @bigcommerce/big-design-patterns styled-components@5
or with pnpm
:
pnpm add @bigcommerce/big-design @bigcommerce/big-design-patterns styled-components@5
Setup BigDesign as per the Quick start guide and then import any pattern, such as Page
and Header
, to use it anywhere in your app.
import { Panel } from '@bigcommerce/big-design';
import { AddIcon } from '@bigcommerce/big-design-icons';
import { Page, Header } from '@bigcommerce/big-design-patterns';
export default function App() {
const header = (
<Header
title="Products"
description="View and manage your products."
actions={[{ text: 'Add new', iconLeft: <AddIcon /> }]}
/>
);
return (
<Page header={header}>
<Panel header="Main content">
...
</Panel>
</Page>
);
}
FAQs
BigDesign React Patterns.
We found that @bigcommerce/big-design-patterns demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.