import React from 'react';
import { PixelSection } from './PixelSection';
export function Default() {
return (
Section content goes here. Wrap any layout block.
);
}
export function WithoutTitle() {
return (
A bare section without a title row.
);
}
export function PixelSurface() {
return (
Renders with the pixel surface tokens.
);
}
export function NoContainer() {
return (
No centered container; uses page gutters.
);
}