URL : https://react-github-users-project.netlify.app/login
User : trial@gmail.com password: Trial@123
Styled component is a different way to apply css to elements. Refer to its docs for better understanding. Styled-Components - Main Docs
import styled from "styled-components";
const ReactComponent = () => {
// logic here
return <Wrapper>
{some content}
</Wrapper>
}
const Wrapper = styled.htmlElement`
write your styles here
`
export default ReactComponent