Files
NotionNext/components/RightWidget.js
tangly1024 dfc0f645d4 Code🤣
2021-09-27 09:33:21 +08:00

14 lines
358 B
JavaScript

import React from 'react'
import TopJumper from '@/components/TopJumper'
import ShareButton from '@/components/ShareButton'
const RightWidget = ({ post }) => {
return <div className='fixed right-0 lg:mr-72 bottom-10 flex justify-center'>
<div className='flex-wrap'>
<ShareButton post={post}/>
<TopJumper/>
</div>
</div>
}
export default RightWidget