From be33b8c82a931587d7a928ff608dacb2f442a9d9 Mon Sep 17 00:00:00 2001 From: Mohammed Nouayti Date: Wed, 9 Dec 2020 23:00:51 +0100 Subject: [PATCH] add line breaks --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c2cd362..56363c3 100644 --- a/README.md +++ b/README.md @@ -64,13 +64,13 @@ A quick look at the top-level files and directories you'll see in a Gatsby proje 2. **`/src`**: This directory will contain all of the code related to what you will see on the front-end of your site (what you see in the browser) such as your site header or a page template. `src` is a convention for “source code”. - This directory contains: - > **`assets`** All your assets files like images, fonts, icons... goes here. - **`components`** Contains all the app functional components. - **`hooks`** Contains some custom hooks. - **`pages`** Contains the app main containers (website pages) - **`store`** Contains actions and reducers of our app, it holds the whole state tree of your application. The only way to change the state inside it is to dispatch an action on it. - **`utils`** Contains app configuration and utilities. + This directory contains: + >**`assets`** All your assets files like images, fonts, icons... goes here. + >**`components`** Contains all the app functional components. + >**`hooks`** Contains some custom hooks. + >**`pages`** Contains the app main containers (website pages). + >**`store`** Contains actions and reducers of our app, it holds the whole state tree of your application. The only way to change the state inside it is to dispatch an action on it. + >**`utils`** Contains app configuration and utilities. 3. **`.gitignore`**: This file tells git which files it should not track / not maintain a version history for.