Skip to content

Commit 02c9f67

Browse files
rolandszokesolkimicreb
authored andcommitted
fix(git): change urls to repo
1 parent ccd1946 commit 02c9f67

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

examples/beer-finder/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Beer Finder · [Live Demo](https://solkimicreb.github.io/react-easy-state/examples/beer-finder/build)
1+
# Beer Finder · [Live Demo](https://RisingStack.github.io/react-easy-state/examples/beer-finder/build)
22

33
An app to find matching beers for your meal. It features networking and async actions with a mix of global and local state. The styling is partially done with the awesome [React Material UI](http://www.material-ui.com/#/) library.

examples/beer-finder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "beer-finder",
3-
"homepage": "https://solkimicreb.github.io/react-easy-state/examples/beer-finder/build/",
3+
"homepage": "https://RisingStack.github.io/react-easy-state/examples/beer-finder/build/",
44
"version": "0.1.0",
55
"private": true,
66
"dependencies": {

examples/clock/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Clock widget · [Live Demo](https://solkimicreb.github.io/react-easy-state/examples/clock/build)
1+
# Clock widget · [Live Demo](https://RisingStack.github.io/react-easy-state/examples/clock/build)
22

33
A super simple digital clock widget. It uses local function component state only and no global store, which is the general rule for **reusable** components and widgets.

examples/clock/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clock",
3-
"homepage": "https://solkimicreb.github.io/react-easy-state/examples/clock/build/",
3+
"homepage": "https://RisingStack.github.io/react-easy-state/examples/clock/build/",
44
"version": "0.1.0",
55
"private": true,
66
"dependencies": {

examples/contacts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Contact Table · [Live Demo](https://solkimicreb.github.io/react-easy-state/examples/contacts/build)
1+
# Contact Table · [Live Demo](https://RisingStack.github.io/react-easy-state/examples/contacts/build)
22

33
An editable contact list, which demonstrates how to balance between local component state and global stores. It manages the central data and logic in a global store and keeps temporary utility data in class component states. Dependency injection is handled by plain imports and react props.

examples/contacts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "contacts",
3-
"homepage": "https://solkimicreb.github.io/react-easy-state/examples/contacts/build/",
3+
"homepage": "https://RisingStack.github.io/react-easy-state/examples/contacts/build/",
44
"version": "0.1.0",
55
"private": true,
66
"dependencies": {

examples/stop-watch/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Stopwatch · [Live Demo](https://solkimicreb.github.io/react-easy-state/examples/stop-watch/build)
1+
# Stopwatch · [Live Demo](https://RisingStack.github.io/react-easy-state/examples/stop-watch/build)
22

33
A simple stopwatch. It uses a single global store with a mix of normal properties, getters and methods. You can find a tutorial about creating the stopwatch [here](https://hackernoon.com/introducing-react-easy-state-1210a156fa16).

examples/stop-watch/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stop-watch",
3-
"homepage": "https://solkimicreb.github.io/react-easy-state/examples/stop-watch/build/",
3+
"homepage": "https://RisingStack.github.io/react-easy-state/examples/stop-watch/build/",
44
"version": "0.1.0",
55
"private": true,
66
"dependencies": {

examples/todo-mvc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# TodoMVC · [Live Demo](https://solkimicreb.github.io/react-easy-state/examples/todo-mvc/build)
1+
# TodoMVC · [Live Demo](https://RisingStack.github.io/react-easy-state/examples/todo-mvc/build)
22

33
This is a lighter version of the well-known React [TodoMVC](http://todomvc.com/). It handles all of the state in a separate global store and relies heavily on JS getters and setter to provide a clear and simple state management. Be sure to click all the buttons in the demo that you can find.

examples/todo-mvc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "todo-mvc",
3-
"homepage": "https://solkimicreb.github.io/react-easy-state/examples/todo-mvc/build/",
3+
"homepage": "https://RisingStack.github.io/react-easy-state/examples/todo-mvc/build/",
44
"version": "0.1.0",
55
"private": true,
66
"dependencies": {

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
},
3131
"repository": {
3232
"type": "git",
33-
"url": "[email protected]:solkimicreb/react-easy-state.git"
33+
"url": "[email protected]:RisingStack/react-easy-state.git"
3434
},
3535
"bugs": {
36-
"url": "https://github.com/solkimicreb/react-easy-state/issues"
36+
"url": "https://github.com/RisingStack/react-easy-state/issues"
3737
},
38-
"homepage": "https://github.com/solkimicreb/react-easy-state#readme",
38+
"homepage": "https://github.com/RisingStack/react-easy-state#readme",
3939
"license": "MIT",
4040
"keywords": [
4141
"observable",

0 commit comments

Comments
 (0)