RCRiya Chauhanintechstack-tales.hashnode.dev·Dec 18, 2024 · 4 min readReact FiberBefore we start, Restructuring the code Make different files for each component . Don’t add hardcoded data in the component files, make different utility folder for that. Now to use these components in the main app.js file or in other components file...00
RCRiya Chauhanintechstack-tales.hashnode.dev·Dec 12, 2024 · 3 min readReact Props and KeyReact Props Props stands for properties. Props are arguments passed into React components. so passing props to a React component is like passing arguments to a JS function. Props are passed to components via HTML attributes. Props might remind you of...00
RCRiya Chauhanintechstack-tales.hashnode.dev·Dec 8, 2024 · 3 min readIntroduction to JSX and React ComponentsConfiguring the commands The execute and build commands can be configured by adding scripts in package.json file.for example, "scripts": { "start": "parcel index.html", "build": "parcel build index.html", "test": "echo \"Error: no test s...00