Junior — Senior
React application with a list of characters
livecode
Task condition
Develop a React application that fetches a list of characters from the public API "Rick and Morty". The interface should include:
- a search field and the ability to sort by name and status;
- pagination for data display;
- for each list item, show a popup window with detailed information about the character.
API address constant:
API_LINK = "https://rickandmortyapi.com/api/character";
Basic application template (do not change):
import "./styles.css";
export default function App() {
return (
<div className="App">
<h1>Hello CodeSandbox</h1>
<h2>hello</h2>
</div>
);