mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
12 lines
286 B
JavaScript
12 lines
286 B
JavaScript
import React from 'react'
|
|
import TopJumper from '@/components/TopJumper'
|
|
import ShareButton from '@/components/ShareButton'
|
|
|
|
const RightWidget = ({ post }) => {
|
|
return <div className='flex-wrap'>
|
|
<ShareButton post={post} />
|
|
<TopJumper />
|
|
</div>
|
|
}
|
|
export default RightWidget
|