Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chunkydotdev/407977d72e824975be34ccae5dd2257e to your computer and use it in GitHub Desktop.
Save chunkydotdev/407977d72e824975be34ccae5dd2257e to your computer and use it in GitHub Desktop.
import React from 'react';
import styled from 'styled-components';
const Button = styled.button`
border: 1px solid black;
background-color: white;
padding: 10px;
color: black;
transition: 0.2s all;
pointer: cursor;
&:hover {
background-color: darkgray;
color: white;
}
`;
const MyFirstComponent: React.FC = () => {
return (
<>
<h1>A basic button</h1>
<Button>Click me</Button>
</>
);
}
export default MyFirstComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment