10 行
194 B
TypeScript
10 行
194 B
TypeScript
import React from 'react'
|
|
|
|
type Props = { children: React.ReactNode }
|
|
|
|
|
|
export default ({ children }: Props) => (
|
|
<main className="flex-1 overflow-y-auto p-4">
|
|
{children}
|
|
</main>)
|