Я пишу приложение с реакцией, и у меня возникла проблема с использованием тега input
enter code here:import React, { Component } from 'react'
введите код здесь: import {Formik} из 'formik';
enter code here:export class Login extends Component {
render() {
return (
<div class="header">
<div class="container">
<div class="logo"></div>
<div class="form">
<form>
<div class="inputemail">
<label class="labelinput" for="">email or phone</label>
<input class="input" type="text">
<div class="inputpassword">
<label class="labelinput" for="">Password</label>
<input class ="input"value type="password">
<a class="linkpassword" href="#">forget password?</a>
<input class="inputbtn" type="submit" value="entrar">enter</input>
</input>
</div>
</input>
</div>
</form>
</div>
</div>
</div>
)
};
}
экспорт по умолчанию Логин;
когда реакция не принимает ввод тега. кто-то знает, почему это случилось?