11import "./App.css" ;
2- import BoxColor from "./components/boxColor/BoxColor" ;
3- import CreditCard from "./components/creditCard/CreditCard" ;
4- import DriverCard from "./components/driverCard/DriverCard" ;
2+ import BoxColor from "./components/box-color/BoxColor" ;
3+ import Carousel from "./components/carousel/Carousel" ;
4+ import ClickablePicture from "./components/clickable-picture/ClickablePicture" ;
5+ import CreditCard from "./components/credit-card/CreditCard" ;
6+ import Dice from "./components/dice/Dice" ;
7+ import DriverCard from "./components/driver-card/DriverCard" ;
8+ import Facebook from "./components/facebook/Facebook" ;
59import Greetings from "./components/greetings/Greetings" ;
6- import IdCard from "./components/idCard/IdCard" ;
10+ import IdCard from "./components/id-card/IdCard" ;
11+ import LikeButton from "./components/like-button/LikeButton" ;
12+ import NumbersTable from "./components/numbers-table/NumbersTable" ;
713import Random from "./components/random/Random" ;
814import Rating from "./components/rating/Rating" ;
15+ import RgbColorPicker from "./components/rgb-color-picker/RgbColorPicker" ;
16+ import SignupPage from "./components/signup-page/SignupPage" ;
917
1018function App ( ) {
1119 return (
@@ -65,8 +73,38 @@ function App() {
6573 < DriverCard name = "Dara Khosrowshahi" rating = { 4.9 } img = "https://ubernewsroomapi.10upcdn.com/wp-content/uploads/2017/09/Dara_ELT_Newsroom_1000px.jpg" car = { { model : "Audi A3" , licensePlate : "BE33ER" } } />
6674
6775 < h2 > Iteration 8 | State: LikeButton</ h2 >
76+ < LikeButton colors = { [ "purple" , "blue" , "green" , "yellow" , "orange" , "red" ] } />
77+ < LikeButton colors = { [ "purple" , "blue" , "green" , "yellow" , "orange" , "red" ] } />
78+
79+ < h2 > Iteration 9: State: ClickablePicture</ h2 >
80+ < ClickablePicture img = "https://randomuser.me/api/portraits/women/44.jpg" imgClicked = "../src/assets/images/glasses.png" />
81+
82+ < h2 > Iteration 10 | State: Dice</ h2 >
83+ < Dice />
84+
85+ < h2 > Iteration 11 | State: Carousel</ h2 >
86+ < Carousel images = { [
87+ "https://randomuser.me/api/portraits/women/1.jpg" ,
88+ "https://randomuser.me/api/portraits/men/1.jpg" ,
89+ "https://randomuser.me/api/portraits/women/2.jpg" ,
90+ "https://randomuser.me/api/portraits/men/2.jpg"
91+ ] }
92+ />
93+
94+ < h2 > Iteration 12 | List and Keys | NumbersTable</ h2 >
95+ < NumbersTable limit = { 24 } />
96+
97+ < h2 > Iterations 13 & 14 | List and Keys - FaceBook </ h2 >
98+ < Facebook />
99+
100+ < h2 > Iteration 15 | Form - SignupPage</ h2 >
101+ < SignupPage />
102+
103+ < h2 > Iteration 16 | Lifting State Up - RGBColorPicker</ h2 >
104+ < RgbColorPicker />
105+
68106 </ div >
69107 ) ;
70108}
71109
72- export default App ;
110+ export default App ;
0 commit comments