Skip to content

Commit

Permalink
Merge pull request #108 from oslabs-beta/josh/logo
Browse files Browse the repository at this point in the history
added logo
  • Loading branch information
mylee1995 authored Aug 15, 2019
2 parents f7ee8e7 + c3724c0 commit d84379c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
Binary file added assets/readme_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 7 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Reactime
<p align="center">
<img src ="./assets/readme_logo.png" width="400"/>
</p>

# Reactime: A Time Travel Debugger for React

[![GitHub](https://img.shields.io/github/license/oslabs-beta/reactime)](https://github.com/oslabs-beta/reactime)
[![Build Status](https://travis-ci.com/oslabs-beta/reactime.svg?branch=master)](https://travis-ci.com/oslabs-beta/reactime)
Expand All @@ -13,7 +17,7 @@
<img src="demo.gif" alt="Demo of Reactime" style="width: 55%">
</p>

A debugging tool for React. Records state whenever state is changed and allows user to jump to any previous recorded state.
Reactime is a debugging tool for React developers. It records state whenever state is changed and allows user to jump to any previous recorded state.

Two parts are needed for this tool to function. The <a href="https://chrome.google.com/webstore/detail/react-time-travel/cgibknllccemdnfhfpmjhffpjfeidjga">chrome extension</a> must be installed, and the NPM package must be installed and used in the React code.

Expand All @@ -38,7 +42,7 @@ npm i reactime
const reactime = require('reactime');
const rootContainer = document.getElementById('root');
ReactDom.render(<App />, rootContainer);
ReactDOM.render(<App />, rootContainer);
reactime(rootContainer);
```
Expand Down
Binary file added src/extension/build/assets/icon128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/extension/build/assets/icon48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/extension/build/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Reactime",
"version": "2.1",
"version": "2.2",
"devtools_page": "devtools.html",
"description": "A Chrome extension that helps debug React by memorizing the state of components with every render.",
"manifest_version": 2,
Expand All @@ -9,6 +9,7 @@
"scripts": ["bundles/background.bundle.js"],
"persistent": false
},
"icons": { "48": "assets/icon48.png", "128": "assets/icon128.png" },
"content_scripts": [
{
"matches": ["<all_urls>"],
Expand Down

0 comments on commit d84379c

Please sign in to comment.