Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ms314006/5c9a57377fa0c277a1ea5dbf3fb755ee to your computer and use it in GitHub Desktop.
Save ms314006/5c9a57377fa0c277a1ea5dbf3fb755ee to your computer and use it in GitHub Desktop.
import React from 'react';
import styled from 'styled-components';
const Title = styled.div`
font-size: 32px;
color: #0f4c75;
`;
const App = () => (
<Title>
Hello world!
</Title>
);
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment