-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLabReports.jsx
56 lines (54 loc) · 1.5 KB
/
LabReports.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { React, useState } from "react";
import AddBtn from "./AddBtn";
import Card from "./Card";
import "../Css/Presentation.css";
import Addbtnlp from "./Addbtnlp";
const LabReports = () => {
const [items, setItems] = useState([
{
title: "First Item",
src: "https://th.bing.com/th/id/OIP.nFtlTeqHyG2yQqh5olfSLgHaEK?pid=ImgDet&rs=1",
body: "Write Something",
},
{
title: "second Item",
src: "https://th.bing.com/th/id/OIP.nFtlTeqHyG2yQqh5olfSLgHaEK?pid=ImgDet&rs=1",
body: "Write Something",
},
{
title: "First Item",
src: "https://th.bing.com/th/id/OIP.nFtlTeqHyG2yQqh5olfSLgHaEK?pid=ImgDet&rs=1",
body: "Write Something",
},
{
title: "First Item",
src: "https://th.bing.com/th/id/OIP.nFtlTeqHyG2yQqh5olfSLgHaEK?pid=ImgDet&rs=1",
body: "Write Something",
},
{
title: "First Item",
src: "https://th.bing.com/th/id/OIP.nFtlTeqHyG2yQqh5olfSLgHaEK?pid=ImgDet&rs=1",
body: "Write Something",
},
{
title: "First Item",
src: "https://th.bing.com/th/id/OIP.nFtlTeqHyG2yQqh5olfSLgHaEK?pid=ImgDet&rs=1",
body: "Write Something",
},
]);
return (
<>
<p id="hd">Lab Reports</p>
{items.map((item, index) => (
<Card
key={index}
title={item.title}
imageUrl={item.src}
body={item.body}
/>
))}
<Addbtnlp />
</>
);
};
export default LabReports;