12 lines
327 B
TypeScript
12 lines
327 B
TypeScript
import React from 'react';
|
|
|
|
export function Page({ title, children }: { title: string; children?: React.ReactNode }) {
|
|
return (
|
|
<div style={{ maxWidth: 720, margin: '0 auto', padding: 16 }}>
|
|
<h1 style={{ fontSize: 20, fontWeight: 600, marginBottom: 12 }}>{title}</h1>
|
|
<div>{children}</div>
|
|
</div>
|
|
);
|
|
}
|
|
|