Skip to content

Commit d84379c

Browse files
authored
Merge pull request #108 from oslabs-beta/josh/logo
added logo
2 parents f7ee8e7 + c3724c0 commit d84379c

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

assets/readme_logo.png

33.6 KB
Loading

readme.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# Reactime
1+
<p align="center">
2+
<img src ="./assets/readme_logo.png" width="400"/>
3+
</p>
4+
5+
# Reactime: A Time Travel Debugger for React
26

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

16-
A debugging tool for React. Records state whenever state is changed and allows user to jump to any previous recorded state.
20+
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.
1721

1822
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.
1923

@@ -38,7 +42,7 @@ npm i reactime
3842
const reactime = require('reactime');
3943
4044
const rootContainer = document.getElementById('root');
41-
ReactDom.render(<App />, rootContainer);
45+
ReactDOM.render(<App />, rootContainer);
4246
4347
reactime(rootContainer);
4448
```
23.6 KB
Loading

src/extension/build/assets/icon48.png

3.54 KB
Loading

src/extension/build/manifest.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Reactime",
3-
"version": "2.1",
3+
"version": "2.2",
44
"devtools_page": "devtools.html",
55
"description": "A Chrome extension that helps debug React by memorizing the state of components with every render.",
66
"manifest_version": 2,
@@ -9,6 +9,7 @@
99
"scripts": ["bundles/background.bundle.js"],
1010
"persistent": false
1111
},
12+
"icons": { "48": "assets/icon48.png", "128": "assets/icon128.png" },
1213
"content_scripts": [
1314
{
1415
"matches": ["<all_urls>"],

0 commit comments

Comments
 (0)