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

@ag.ds-next/content

Package Overview
Dependencies
Maintainers
3
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ag.ds-next/content

--- title: Content description: A collection of simple layout containers to wrap content. group: Layout storybookPath: /storybook/index.html?path=/story/layout-content-content--basic ---

  • 7.0.0
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

title: Content description: A collection of simple layout containers to wrap content. group: Layout storybookPath: /storybook/index.html?path=/story/layout-content-content--basic

PageContent

The PageContent component should be used to wrap your applications page content. Typically this component will sit in-between your applications header and footer component.

<YourApplicationsHeader />
<PageContent as="main">
	<YourApplicationsPageContent />
</PageContent>
<YourApplicationsFooter />

SectionContent

The SectionContent component should be used to wrap sections your applications page content.

<SectionContent>
	<H2>Section 1</H2>
</SectionContent>
<SectionContent background="shade">
	<H2>Section 2</H2>
</SectionContent>
<SectionContent>
	<H2>Section 3</H2>
</SectionContent>

Content

The Content component can be used when you wrap content in a consistent container with a maximum width, but don't want any associated vertical padding.

<Content>
	<Box paddingY={2}>
		<H2>Example title</H2>
	</Box>
</Content>

FAQs

Package last updated on 15 Jun 2022

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc