Page Container
Last updated: 3.0.0 (04/07/2024)
Usage
import { PageContainer, Text, Title } from "@valence-ui/core";
function MyPage() {
return (
<PageContainer>
<Title>My Page</Title>
<Text>
This content is centered and constrained to a maximum width.
</Text>
</PageContainer>
)
}Custom inner width
import { PageContainer, Text } from "@valence-ui/core";
function MyPage() {
return (
<PageContainer
innerWidth="min(100%, 1000px)"
>
<Text>
Wider content area!
</Text>
</PageContainer>
)
}Exempt content
Custom overflow container props
Props
Property
Type
Description
Last updated