Files
NotionNext/components/RightWidget.js
2021-09-28 17:36:45 +08:00

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