Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit ad94eb2

Browse files
committed
changed package name
1 parent 01c4cd2 commit ad94eb2

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@t/rex",
2+
"name": "rex-state",
33
"version": "0.0.1",
44
"description": "The Simplest state management tool for React",
55
"scripts": {

rex-example/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { useState } from "react";
2-
import { useRex } from "@t/rex";
2+
import { useRex } from "rex-state";
33

44
export default function App() {
55
const store = useRex();

rex-example/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import ReactDOM from "react-dom";
3-
import { RexProvider } from "@t/rex";
3+
import { RexProvider } from "rex-state";
44
import store from "./store/store";
55
import App from "./App";
66
// import './index.css'

rex-example/src/store/Todos.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Rex from "@t/rex";
1+
import Rex from "rex-state";
22

33
export interface ITask {
44
task: string;

0 commit comments

Comments
 (0)