mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
9 lines
159 B
JavaScript
9 lines
159 B
JavaScript
import LayoutBase from './LayoutBase'
|
|
|
|
export const LayoutTag = (props) => {
|
|
const { tag } = props
|
|
return <LayoutBase>
|
|
Tag - {tag}
|
|
</LayoutBase>
|
|
}
|