mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
import LayoutBase from '../Hexo/LayoutBase'
|
|
|
|
export const LayoutPage = (props) => {
|
|
const { page } = props
|
|
return <LayoutBase {...props}>
|
|
Page - {page}
|
|
</LayoutBase>
|
|
}
|