forked from msgbyte/tailchat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92a1105
commit fd533d5
Showing
39 changed files
with
49 additions
and
3,314 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# pawchat | ||
# tailchat | ||
This is a basic chat client and easy to expand. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"name": "pawchat-app", | ||
"name": "tailchat-app", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"repository": "https://github.com/pawchat/pawchat.git", | ||
"repository": "https://github.com/msgbyte/tailchat.git", | ||
"author": "moonrailgun <[email protected]>", | ||
"license": "GPLv3", | ||
"private": true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"name": "pawchat", | ||
"name": "tailchat", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"workspaces": [ | ||
"web", | ||
"shared", | ||
"app" | ||
], | ||
"repository": "https://github.com/pawchat/pawchat.git", | ||
"repository": "https://github.com/msgbyte/tailchat.git", | ||
"author": "moonrailgun <[email protected]>", | ||
"license": "GPLv3", | ||
"private": true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import React from 'react'; | ||
import { CacheProvider } from '../cache/Provider'; | ||
|
||
export const PawProvider: React.FC = React.memo((props) => { | ||
export const TcProvider: React.FC = React.memo((props) => { | ||
return <CacheProvider>{props.children}</CacheProvider>; | ||
}); | ||
PawProvider.displayName = 'PawProvider'; | ||
TcProvider.displayName = 'TcProvider'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** | ||
* Pawchat 共享配置 | ||
* TailChat 共享配置 | ||
*/ | ||
|
||
export const config = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"name": "pawchat-shared", | ||
"name": "tailchat-shared", | ||
"version": "1.0.0", | ||
"main": "index.tsx", | ||
"repository": "https://github.com/pawchat/pawchat.git", | ||
"repository": "https://github.com/msgbyte/tailchat.git", | ||
"author": "moonrailgun <[email protected]>", | ||
"license": "GPLv3", | ||
"private": true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.