File tree 5 files changed +13
-14
lines changed
lib-components/product_card 5 files changed +13
-14
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import React from 'react'
2
- import { Link } from " react-router-dom" ;
2
+ import { Link } from ' react-router-dom'
3
3
4
4
const Home = ( ) => {
5
5
return (
6
- < div className = " Home" >
7
- < div className = " header" >
6
+ < div className = ' Home' >
7
+ < div className = ' header' >
8
8
< h1 > Frontend-reactjs</ h1 >
9
9
</ div >
10
10
11
- < div className = " contri" >
12
- < div className = " contri_heading" >
11
+ < div className = ' contri' >
12
+ < div className = ' contri_heading' >
13
13
< h3 > Start Contributing</ h3 >
14
14
</ div >
15
15
< hr />
16
16
17
- < div className = " contri_components" >
18
- < Link to = " /login" className = " component" >
17
+ < div className = ' contri_components' >
18
+ < Link to = ' /login' className = ' component' >
19
19
< h2 > Login</ h2 >
20
20
</ Link >
21
- < Link to = " /register" className = " component" >
21
+ < Link to = ' /register' className = ' component' >
22
22
< h2 > Register</ h2 >
23
23
</ Link >
24
- < Link to = " /product_card" className = " component" >
24
+ < Link to = ' /product_card' className = ' component' >
25
25
< h2 > Product card</ h2 >
26
26
</ Link >
27
27
{ /* Add new Link Here for your new component */ }
@@ -31,4 +31,4 @@ const Home = () => {
31
31
)
32
32
}
33
33
34
- export default Home
34
+ export default Home
Original file line number Diff line number Diff line change 2
2
"env": {
3
3
"jest": true
4
4
}
5
- }
5
+ }
Original file line number Diff line number Diff line change 1
1
export { default as Login } from './lib-components/login'
2
2
export { default as Register } from './lib-components/register'
3
3
export { default as ProductCard } from './lib-components/product_card'
4
-
Original file line number Diff line number Diff line change 1
1
/*===== GOOGLE FONTS =====*/
2
- @import url (" https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" );
2
+ @import url (' https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap' );
3
3
/*===== VARIABLES CSS =====*/
4
4
: root {
5
5
/*===== Colores =====*/
8
8
--dark-color : # 272d40 ;
9
9
--dark-color-lighten : # f2f5ff ;
10
10
/*===== Fuente y tipografia =====*/
11
- --body-font : " Poppins" , sans-serif;
11
+ --body-font : ' Poppins' , sans-serif;
12
12
--h1-font-size : 1.5rem ;
13
13
--h2-font-size : 1.25rem ;
14
14
--normal-font-size : 1rem ;
You can’t perform that action at this time.
0 commit comments