From 07dbf2a20c4a7f10b31efb8bab277f99d2cab9a5 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Mon, 31 Oct 2016 18:13:13 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 839399cd..13d6e276 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ export default () => ( ### Component lifecycle -When you need state, lifecycle hooks or **initial data population** you can export a `React.Component`: +When you need state, lifecycle hooks or **initial data population** you can export a `React.Component`. Notice that to load data when the page loads, we use `getInitialProps` which is an [`async`](https://zeit.co/blog/async-and-await) static method. It can asynchronously fetch anything that resolves to a JavaScript plain `Object`, which populates `props`. ```jsx import React from 'react'