Skip to content

Mercy-1998/Mercy-21-4-2020

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 

Repository files navigation

#Mercy-23-4-2020

Collected details for the project and working on planning for my project, and searching on some kind of npm errors.Done this much today.

#Mercy-22-4-2020

done.. upto creating.. overlayout.. like creating cards. wthout adding function.Done that much today.I will share the screenshot

Mercy-21-4-2020

import React, { useState, useEffect } from 'react'

function HookCounterOne() {

const [ count, setCount ] = useState(0)
const [ name, setName ] = useState('')

useEffect(() => {
    console.log('useEffect - Updating document title')
    document.title = `You clicked ${count} times`
}, [count])

return (
    <div>
        <input type='text' value={name} onChange={e => setName(e.target.value)} />
       <button onClick={() => setCount(count + 1)}>Click {count} times</button> 
    </div>
)

}

export default HookCounterOne

Hii saswati.. Today i learned this.. useEffect- conditionally run effects.Then after knowing the task i searched and collected details about trello.Like material-ui.. etc.. i collected.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published