Elizah7 / lab-react-props-boilerplate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Logo-nav

Kalvium Lab

Learning Goals

In this exercise, the goal is to understand and experiment around JSX - using both class and functional components.

Getting started

  1. Fork this repo
  2. Clone this repo

Whenever you create a first significant change, you should make your first commit.

  1. Follow these guidelines to add, commit and push changes.

In the end of this document, you will find guidelines on how to submit the exercise.

Introduction

The task is to create a webpage which looks like the image below:

Steps to follow:

  1. Clone this repository.

  2. On your terminal go inside lab-react-jsx-boilerplate directory and use the following command: npm install This command install's all the packages to your system that this project is using.

  3. Few lines of code is already written for you -- in the following files:

    1. App.jsx : In this file, you need to complete the task by using functional component. In this file, imageData is a function which stores the an array of objects -> which contains two fields: id and image. NOTE note how images are being imported. Your task is to complete the App function - and get an output as shown in the above image.

    2. AppClass.jsx: Before doing anything --> go to index.jsx file and check which component is being rendered. For now, <App/> is being rendered, we need to change this to <AppClass/>. Import this component and render AppClass, so that any changes made in AppClass file, are displayed on the web now. Similar to 1st case, imageData is defined for you, you just need to complete the class component AppClass - and get an output as shown in the above image.

  4. Once you are able to display the images on the browser, then you can style it in App.css file. If you observe, in both the files, App.css is the only style sheet which is being imported, so any styles added to this file, will be reflected for both the cases.

Happy Coding Kalvium ❤️!

About


Languages

Language:JavaScript 49.6%Language:HTML 34.4%Language:CSS 16.0%