From 297bcc634de9f3588c32e7c21533c23c1f5a3bc3 Mon Sep 17 00:00:00 2001
From: Zandor Smith <info@zsinfo.nl>
Date: Wed, 26 Oct 2022 14:59:41 +0200
Subject: [PATCH] chore: Fix install command in REAMDE.md

---
 README.md | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 0ce4181..1e4c0a9 100644
--- a/README.md
+++ b/README.md
@@ -4,10 +4,16 @@ Handle document meta/head tags in isomorphic react with ease.
 Handling title and meta/head tags in a isomporhic react is tricky. Its declarative to define those tags within the component, but they need to be moved on document head on client side as well as server side. While there are other modules which helps with the use-case like <a href="https://github.com/nfl/react-helmet" target="_blank">react-helmet</a> and  <a href="https://github.com/kodyl/react-document-meta" target="_blank">react-document-meta</a>, but they require to define those tags in a object literal. react-meta-tags allow you to write those tags in a declarative way and in normal jsx format.
 
 ### Install
-Through npm
-`npm install react-meta-tags --save`
 
-Or get compiled development and production version from ./dist
+#### npm
+```sh
+npm install @zandor300/react-meta-tags
+```
+
+#### yarn
+```sh
+yarn add @zandor300/react-meta-tags
+```
 
 ### Usage
 
-- 
GitLab