Skip to content

Instantly share code, notes, and snippets.

View kwe92's full-sized avatar
🌍
A man who thinks he can and a man who thinks he can't are both right; Who are u?

Kweayon C. kwe92

🌍
A man who thinks he can and a man who thinks he can't are both right; Who are u?
View GitHub Profile
@kwe92
kwe92 / StyledComponent-01
Created January 15, 2023 06:58
Styled Component
import styled from "styled-component";
const ColoredContainer = styled.div`
width: 10rem;
height: 10rem;
background: lightblue;
`;