From 8936f271d0b9736587311efd297d0f52b1bef99c Mon Sep 17 00:00:00 2001 From: Shawn Allen Date: Fri, 3 May 2019 09:41:55 -0700 Subject: [PATCH 1/2] use single quotes in README example for consistency ;) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 97cbe10..3f712ba 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ $ npm i react95 styled-components Apply style reset, wrap your app content with ThemeProvider with theme of your choice... and you are ready to go! 🚀 ```jsx import React from 'react'; -import { createGlobalStyle, ThemeProvider } from "styled-components"; +import { createGlobalStyle, ThemeProvider } from 'styled-components'; import { reset, themes, List, ListItem, Divider } from 'react95'; const ResetStyles = createGlobalStyle` From 2d1ac3f2c9fbaabc15cbfb41ee22450682401f28 Mon Sep 17 00:00:00 2001 From: Shawn Allen Date: Tue, 14 May 2019 13:11:19 -0700 Subject: [PATCH 2/2] use double quotes in README example --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3f712ba..cc1d7b4 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,9 @@ $ npm i react95 styled-components ``` Apply style reset, wrap your app content with ThemeProvider with theme of your choice... and you are ready to go! 🚀 ```jsx -import React from 'react'; -import { createGlobalStyle, ThemeProvider } from 'styled-components'; -import { reset, themes, List, ListItem, Divider } from 'react95'; +import React from "react"; +import { createGlobalStyle, ThemeProvider } from "styled-components"; +import { reset, themes, List, ListItem, Divider } from "react95"; const ResetStyles = createGlobalStyle` ${reset}