From 08092642952b45b72e8ab910bc5ba1914e3149ae Mon Sep 17 00:00:00 2001 From: tishoyanchev Date: Tue, 1 Aug 2023 15:41:14 +0200 Subject: [PATCH] test 3 --- .../react-javascript/src/App.js | 5 ----- .../src/components/card/Card.js | 21 ------------------- 2 files changed, 26 deletions(-) delete mode 100644 examples/wrapper-components/react-javascript/src/components/card/Card.js diff --git a/examples/wrapper-components/react-javascript/src/App.js b/examples/wrapper-components/react-javascript/src/App.js index 310a7b95f9..f1ef9292da 100644 --- a/examples/wrapper-components/react-javascript/src/App.js +++ b/examples/wrapper-components/react-javascript/src/App.js @@ -12,7 +12,6 @@ import NumberIndicator from './components/NumberIndicator/NumberIndicator' import Spinner from './components/Spinner/Spinner' import Checkbox from './components/Checkbox/Checkbox'; import Navbar from './components/Navbar/Navbar'; -import Card from './components/Card/Card'; import IconButton from './components/IconButton/IconButton'; import Tab from './components/Tab/Tab'; import Tag from './components/Tag/Tag'; @@ -78,10 +77,6 @@ function App() {
-

Card

- -
-

Number indicator


diff --git a/examples/wrapper-components/react-javascript/src/components/card/Card.js b/examples/wrapper-components/react-javascript/src/components/card/Card.js deleted file mode 100644 index 69a3a1954a..0000000000 --- a/examples/wrapper-components/react-javascript/src/components/card/Card.js +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react'; -import { IfxCard, IfxCardHeadline, IfxButton, IfxCardOverline, IfxCardText, IfxCardImage, IfxCardLinks } from '@infineon/infineon-design-system-react'; - -function Card() { - return ( - - - Overline - Headline - - Some quick example text to build on the card title and make up the bulk of the card's content - - - Button - Button - - - ); -} - -export default Card; \ No newline at end of file