diff --git a/README.md b/README.md
index 2bd78cb..5c3b657 100644
--- a/README.md
+++ b/README.md
@@ -3,4 +3,5 @@
1. Git
2. Ruby
3. Rails
-4. RSpec
\ No newline at end of file
+4. RSpec
+5. React
diff --git a/react.md b/react.md
new file mode 100644
index 0000000..a305d02
--- /dev/null
+++ b/react.md
@@ -0,0 +1,144 @@
+# React
+
+# Naming
+
+* Always use JSX syntax.
+
+* Use .jsx extension for React components.
+
+* Use PascalCase for filenames. E.g., FoodMenus.jsx.
+
+# Syntax
+
+* Do not use React.createElement unless you're initializing the app from a file that is not JSX.
+
+ # bad
+ const Listing = React.createClass({
+ // ...
+ render() {
+ return
{this.state.hello}
;
+ }
+ });
+
+ # good
+ class Listing extends React.Component {
+ // ...
+ render() {
+ return {this.state.hello}
;
+ }
+ }
+
+* Use PascalCase for React components and camelCase for their instances.
+
+ # bad
+ import foodMenus from './FoodMenus';
+
+ # good
+ import FoodMenus from './FoodMenus';
+
+ # bad
+ const FoodMenus = ;
+
+ # good
+ const foodMenus = ;
+
+* Use the filename as the component name. For example, FoodMenus.jsx should have a reference name of FoodMenus.
+
+* Do not use displayName for naming components. Instead, name the component by reference.
+
+ # bad
+ export default React.createClass({
+ displayName: 'ReservationCard',
+ // ...
+ });
+
+ # good
+ class ReservationCard extends React.Component {
+ // ...
+ }
+
+* Follow these alignment styles for JSX syntax.
+
+ # bad
+
+
+ # good
+
+
+* Use double quotes (") for JSX attributes & single quotes (') for all other JS.
+
+ # bad
+
+
+ # good
+
+
+ # bad
+
+
+ # good
+
+
+* Always include a single space in your self-closing tag.
+
+ # bad
+
+
+ # good
+
+
+* Use camelCase for prop names.
+
+ # bad
+
+
+ # good
+
+
+* Omit the value of the prop when it is explicitly true.
+ # bad
+
+
+ # good
+
+
+* Avoid using an array index as key prop, prefer a unique ID.
+
+ # bad
+ {todos.map((todo, index) =>
+
+ )}
+
+ # good
+ {todos.map(todo => (
+
+ ))}
+
+* Wrap JSX tags in parentheses when they span more than one line.
+
+ # bad
+ render() {
+ return
+
+ ;
+ }
+
+ # good
+ render() {
+ return (
+
+
+
+ );
+ }
+