diff --git a/README.md b/README.md index ec2ffb9..395731f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # React CosmosDB -This is a demo project for the React CosmosDB video series that shows how to... +This is a demo project for the [React CosmosDB video series](https://docs.microsoft.com/en-us/azure/cosmos-db/tutorial-develop-mongodb-react) that shows how to … * Setup a React / Node application * Create, Read, Update and Delete data from CosmosDB with the Mongo API diff --git a/src/App.js b/src/App.js index 37f711c..45876d8 100644 --- a/src/App.js +++ b/src/App.js @@ -1,7 +1,7 @@ -import React, { Component } from "react"; -import "./App.css"; +import React, { Component } from 'react'; +import './App.css'; -import Heroes from "./components/Heroes"; +import Heroes from './components/Heroes'; class App extends Component { render() { @@ -9,7 +9,6 @@ class App extends Component {