Answer the question
In order to leave comments, you need to log in
How to design a chat?
Hello. There is a task to make a chat.
request body
import React, { Component } from "react";
/**Components */
import UserControls from "./UserControls";
import UnreadUsers from "./UnreadUsers";
import AllUser from "./AllUser";
export default class UserComponent extends Component {
render() {
return (
<div className="scroll-container">
<UserControls /> // компонент с input для поиска и фильтрации
<div className="users-list">
<UnreadUsers />
<AllUser />
</div>
</div>
);
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question