Skip to content

This is simple react app using some of the basic function and concepts.

Notifications You must be signed in to change notification settings

codewithdeepak-in/search-article-using-react

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Creating React Article filter App.

[simple functions are used in the application like ternary operator components, class, statless functions and many more.]

Ternery Operator, filter(), map().

1. CONDITION ? TRUE : FALSE;
if condition is TRUE then condition first will be executed else condition last will be executed.

2. news.filter((item) => item.indexOf(condition) > -1)
    then one of the major function is filter is used to filter the condition.

3. map(item => <li>{item}</li>)

Portfolio Website

Showing how to write inline CSS and CSS styles in Object formats.

const styles = {
    logo: {
        fontSize: '20px',
        backgroundColor: "#333"
    }
}

IN JSX you can use this.

return (
    <div>
        <div style = {styles.logo}>Logo</div>
    </div>
)

[This is a Very simple Application I have created so far.]

You Can See my Latest Project

EDUCATIONAL PLATFORM

Skills

JavaScript C++ PHP HTML5 CSS3 JQuery Bootstrap React MySQL

Socials

About

This is simple react app using some of the basic function and concepts.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published