https://github.com/HackYourFuture/React/blob/main/week1/README.md

React Basics

Is it possible to write a React app without using JSX? (Alex)

Are there any situations where using JSX might not be the best option? (Esen)

React Components

When should we use Stateless Components in React, and when should we use Stateful Components? (Ruba)

Are there any specific scenarios where using class components would still be the better choice in React as opposed to function components? (Dorelys)

Project Organization

What is the best practice for organizing files in a React project? Should we create a separate file for each component or combine them into one file? (Fady)

How are projects organized in React? (Valda)

Styling in React

In React, is it a good practice to use styling inside the component, or should it be in a separate file? (Fady)

React App Creation

What is the difference between creating a starter React app using Vite and Create-react-app? (Lidiia)

While React can work without Webpack, why is it often used with React together? (Liya)

Figma Integration

Are there any ways to export components from Figma to React? (Lidiia) (1)

State Management

How to properly synchronize state between multiple components? (Alex)

Advanced Topics