From 36288e22760c523c88dde9a734f0bd1ef6749847 Mon Sep 17 00:00:00 2001 From: MiguelHD24 Date: Sun, 14 Jul 2024 10:20:25 -0600 Subject: [PATCH 1/2] feat: add component ItemM --- react-project/src/components/ItemM/index.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 react-project/src/components/ItemM/index.js diff --git a/react-project/src/components/ItemM/index.js b/react-project/src/components/ItemM/index.js new file mode 100644 index 0000000..e3beb8b --- /dev/null +++ b/react-project/src/components/ItemM/index.js @@ -0,0 +1,7 @@ +import React from "react" + +export const ItemM = () => { + return ( +
  • this is the ItemM
  • + ) +} \ No newline at end of file From 18fcada1b5ee863f5bf01c37a7f4913f7c58ea0c Mon Sep 17 00:00:00 2001 From: MiguelHD24 Date: Fri, 19 Jul 2024 11:47:32 -0600 Subject: [PATCH 2/2] fix: suggestion corrected --- react-project/src/components/ItemM/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react-project/src/components/ItemM/index.js b/react-project/src/components/ItemM/index.js index e3beb8b..f3e1505 100644 --- a/react-project/src/components/ItemM/index.js +++ b/react-project/src/components/ItemM/index.js @@ -1,7 +1,7 @@ -import React from "react" +import React from "react"; export const ItemM = () => { return ( -
  • this is the ItemM
  • +
  • This is the ItemM
  • ) } \ No newline at end of file