Hi, I am currently working on the React Appointment Planner Project.
I cant seem to see where i am going wrong, my code below is based on Task 5, when i write this code. My browser stops showing the results, GITBASH shows no problems and if i delete the code, the browser shows the results. Im not sure what i’m doing wrong any help would be greatly appreciated.
import React from “react”;
import { Tile } from “…/tile/Tile”;
export const TileList = ({objArr}) => {
return (
{objArr.map( (index, value) => )}
);
};