EditPostButton.js 441 B

1234567891011121314151617181920
  1. import { Link } from 'react-router-dom'
  2. import { Button } from 'antd'
  3. import React, { useState, useEffect } from 'react'
  4. export const EditMyPostButton = ({ _id }) => {
  5. return (
  6. <>
  7. <Link to={`/edit/post/${_id}`}>
  8. <Button
  9. style={{ marginLeft: '200px',marginTop:'10px', width: '100px' }}
  10. size="large"
  11. type="primary"
  12. >
  13. Edit Post
  14. </Button>
  15. </Link>
  16. </>
  17. )
  18. }