Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alanbsmith/02ff14454c977a4ec957d4cf2f80c0fc to your computer and use it in GitHub Desktop.
Save alanbsmith/02ff14454c977a4ec957d4cf2f80c0fc to your computer and use it in GitHub Desktop.
effective-testing-for-styled-components-simple-button
import styled from 'styled-components';
const Button = styled.button`
background-color: #7D7D7D;
color: #FFF;
`;
export default Button;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment