# extendify/3.2.1/src/AutoLaunch/templates/PageCanvas.jsx

Extendify, version 3.2.1. 9 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.2.1/code/src/AutoLaunch/templates/PageCanvas.jsx
- Raw: https://pluginprobe.com/plugins/extendify/3.2.1/raw/src/AutoLaunch/templates/PageCanvas.jsx
- Modified: 2026-09-09T18:23:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.2.1/code/src/AutoLaunch/templates/PageCanvas.jsx#L10-L20`.

```jsx
// The one scroller on the page: a second one breaks scrolling on mobile.
export const PageCanvas = ({ children }) => (
	<div className="relative h-dvh bg-ui-page text-ui-page-text text-ui-body font-ui-body overflow-y-auto">
		<div className="relative z-10 min-h-dvh w-full flex flex-col items-center justify-between p-6">
			{children}
		</div>
	</div>
);

```
