diff --git a/CheatSheets/React-Cheatsheet.md b/CheatSheets/React-Cheatsheet.md
new file mode 100644
index 0000000..9ac2378
--- /dev/null
+++ b/CheatSheets/React-Cheatsheet.md
@@ -0,0 +1,698 @@
+# π React Cheat Sheet
+This repository is a cheat sheet to React for daily use. It contain a lot of snippets from my own use / official documentation and i'll improve it soon !
+It's made for people like me who like to continue have a overview of some snippets.
+
+## Table of Contents
+
+1. **[React](#1---react)**
+2. **[Redux](#2---redux)**
+
+## 1 - React
+### Use React
+```javascript
+// Import React and ReactDOM
+import React from 'react'
+import ReactDOM from 'react-dom'
+```
+
+```javascript
+// Render JSX into a DOM element
+ReactDOM.render(
+
Hello, world!
,
+ document.getElementById('root')
+);
+```
+
+```javascript
+// Render Component into a DOM element
+ReactDOM.render(
+ ,
+ document.getElementById('root')
+);
+```
+**[β¬ Go to top](#table-of-contents)**
+
+### JSX
+```javascript
+// JSX produce React Element
+const item =
My JSX Element
;
+```
+
+```javascript
+// Use curly braces to embed some Javascript
+const item =
{getContent()}
;
+```
+
+```javascript
+// Use camelCase for attribute name
+const item = ;
+```
+
+```javascript
+// Use curly braces to embed some Javascript
+const item = ;
+```
+
+```javascript
+// Self close if tag is empty
+const item = ;
+```
+**[β¬ Go to top](#table-of-contents)**
+
+### Components
+```javascript
+// Stateless Functional Component
+function Heading(props) {
+ return