pull/90/head
Reach1 Dev 5 years ago
parent 8bc961899c
commit 4ef38f236d

@ -2,11 +2,6 @@ import React from 'react'
import ReactDOM from 'react-dom' import ReactDOM from 'react-dom'
// importing data
import { countriesData } from './data/countries'
import { tenMostHighestPopulations } from './data/ten_most_highest_populations'
const countries = [ const countries = [
{ name: 'Finland', city: 'Helsinki' }, { name: 'Finland', city: 'Helsinki' },
{ name: 'Sweden', city: 'Stockholm' }, { name: 'Sweden', city: 'Stockholm' },

@ -18,13 +18,13 @@
![30 Days of React banner](../images/30_days_of_react_banner_day_13.jpg) ![30 Days of React banner](../images/30_days_of_react_banner_day_13.jpg)
- [Uncotrolled Components](#uncotrolled-components) - [Uncontrolled Components](#uncontrolled-components)
- [Getting data from an uncontrolled input](#getting-data-from-an-uncontrolled-input) - [Getting data from an uncontrolled input](#getting-data-from-an-uncontrolled-input)
- [Getting multiple input data from form](#getting-multiple-input-data-from-form) - [Getting multiple input data from form](#getting-multiple-input-data-from-form)
- [Exercises](#exercises) - [Exercises](#exercises)
- [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 1](#exercises-level-1)
# Uncotrolled Components # Uncontrolled Components
In the previous day challenge we have covered controlled inputs. In react most of the time we use controlled inputs as recommended on the official [documentation of React](https://reactjs.org/docs/uncontrolled-components.html). In the previous day challenge we have covered controlled inputs. In react most of the time we use controlled inputs as recommended on the official [documentation of React](https://reactjs.org/docs/uncontrolled-components.html).

Loading…
Cancel
Save