infoPage.js
import React from 'react'
export default function infoPage() {
return (
<div>
<h1> this is info components</h1>
</div>
)
}
App.js:
<button className="btn btn-primary" onClick={handleClick}>{value.title}</button>
Function:
const handleClick = () => {
const url = infoPage;
window.open(url, '_blank');
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)