-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
78 lines (75 loc) · 4.1 KB
/
blogs.html
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet" />
<title>Blogs</title>
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">
<a href="index.html"><img class="logo" src="robot-mascot-logo.jpg" alt="logo"/></a>
<h1 class="head">My Portfolio</h1>
<ul class="nav-pills">
<li class="list-item-inline">
<a class="link link-active" href="index.html">Home</a>
</li>
<li class="list-item-inline">
<a class="link" href="projects.html">Web Dev</a>
</li>
<li class="list-item-inline">
<a class="link" href="projects2.html">React JS</a>
</li>
<li class="list-item-inline">
<a class="link" href="blogs.html">Blogs</a>
</li>
</ul>
</div>
</nav>
<header class="hero">
<h1 class="project-heading" style="color:darkgoldenrod">Blogs</h1>
<img class="hero-img" src="undraw_4.svg">
</header>
<div class="container container-center" style="color:white; margin-bottom: 5rem;">
<h1>Understanding Context in React JS using React Hooks</h1>
<p class="para"><span style="color:chartreuse; font-weight:bold;">What is context in React JS ?</span>
Context provides a way pass props between multiple components without actually passing them down the hierarchy.
Check out this blog to learn about context in detail and how to use it.
</p>
<a class="link link-primary" href="https://shrey027.hashnode.dev/understanding-context-in-react-js-using-react-hooks-ckp46ycz20fzte4s124em4x52"
target="_blank" rel="noopener noreferrer">Go to blog</a>
</div>
<div class="container container-center" style="color:white; margin-bottom: 5rem;">
<h1>An overview on react hooks useMemo and useCallback</h1>
<p class="para"><span style="color:chartreuse; font-weight:bold;">React offers multiple hooks to make
component rendering easier.</span>
In this blog I have tried to explain in detail the two most commonly used hooks in react, useCallback and useMemo. Learn about
their difference and when to use which hook in your project.
</p>
<a class="link link-primary" href="https://shrey027.hashnode.dev/an-overview-on-react-hooks-usememo-and-usecallback-ckp71fwbd0eznmds117nbf0du"
target="_blank" rel="noopener noreferrer">Go to blog</a>
</div>
<div class="container container-center" style="color:white; margin-bottom: 5rem;">
<h1>A complete overview of react Hook, useEffect</h1>
<p class="para"><span style="color:chartreuse; font-weight:bold;">useEffect, a powerful tool to perform
conditional rendering in React JS.</span>
Check out this blog to learn in detail about useEffect. I have tried to cover the most common scenarios of useEffect hook and
tried to explain in detail the issues faced by developers while usin this hook.
</p>
<a class="link link-primary" href="https://shrey027.hashnode.dev/a-complete-overview-of-react-hook-useeffect-ckp8n6wme0kdbvws12w8c2zbx"
target="_blank" rel="noopener noreferrer">Go to blog</a>
</div>
<footer class="footer">
<div class="footer-header">About Me</div>
<div >
<a class="footer-logo" href="https://github.com/shrey27"
target="_blank" rel="noopener noreferrer"><img class="logo_git" src="github_logo.png" alt="logo" /></a>
<a class="footer-logo" href="https://www.linkedin.com/in/shrey27/"
target="_blank" rel="noopener noreferrer"><img class="logo_git" src="linkedin_logo.png" alt="logo" /></a>
<a class="footer-logo" href="https://shrey027.hashnode.dev/"
target="_blank" rel="noopener noreferrer"><img class="logo_git" src="hashnode.jpeg" alt="logo" /></a>
</div>
</footer>
</body>
</html>