I have a component that creates a series of other components that contain information, that information I would like to show in a popover
I am using reactstrap to streamline the process, this is the component
import React, { Component } fro...
In the UI of my app there are 2 lists and a form.
A list is a team with no points awarded and the other list is the scores of teams already loaded.
Each list is filled with information from their respective methods of my own Rest API.
T...
I'm trying to access the variable of input called name but it throws undefined . How can I access the data of input of reactstrap?
Any ideas? This is my code:
handleSubmit(e){
e.preventDefault();
console.log(this.nam...
I am creating a reusable component and one of its features that I want to add is that the background color can be defined with a property.
At this time, my component looks like this:
import React, {Component} from 'react'
import { Row, Col...