guys, I’m new to coding I want to display my Form.jsx to my AddWord.jsx Form.jsx is a form Addword.jsx is a button in Addword.js onclick i have to display Form.jsx help me
//This is my code
import React from 'react'
import App from '../App'
import Form from './Form'
function AddWords() {
return (
<div>
<button type="button" onclick="">Click Me!</button>
</div>
)
}
export default AddWords