Relative Content

Tag Archive for reactjsreact-props

How can i throw the string with link in props without error in Component with lable

I have a problem in React with props. I need to throw into my Component (into lable tag) string with a link. I’v done that and it works, but i have the error in browser console like “console.js:288 Warning: The tag is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.”

Type ‘{}’ is missing the following properties

I am trying to learn react but i keep getting this error, i am still not clear on the props concept so please bear with me enter image description here App.tsx import ListGroup from “./components/ListGroup”; function App() { return ( <div> <ListGroup></ListGroup> </div> ); } export default App; ListGroup.tsx import { useState } from “react”; […]