From 6e0df5cb0cbb8e6389e7c24eb607635dd83207af Mon Sep 17 00:00:00 2001 From: Christian Fleschhut Date: Tue, 30 Oct 2018 01:53:19 +0100 Subject: [PATCH 1/2] chore(readme): add video series tutorial url --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 4bea16681e46f3b1952515a3ec7375370b3cdac5 Mon Sep 17 00:00:00 2001 From: Christian Fleschhut Date: Tue, 30 Oct 2018 02:14:31 +0100 Subject: [PATCH 2/2] refactor(app-component): remove angular-esque empty component --- src/App.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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 {

Heroes

-
);