Skip to content

Commit

Permalink
二次修改
Browse files Browse the repository at this point in the history
  • Loading branch information
linyin committed Mar 6, 2023
1 parent 7858303 commit 9533ed5
Show file tree
Hide file tree
Showing 4 changed files with 10,321 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ bower_components
build/Release

# Dependency directories
# node_modules/
node_modules/
jspm_packages/

# TypeScript v1 declaration files
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"start": "BROWSER=none WDS_SOCKET_PORT=0 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
"eject": "react-scripts eject",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
Expand Down
1 change: 1 addition & 0 deletions src/pages/chat-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const Content = Layout.Content;
const collapsedWidth = 60;
const normalWidth = 260;

// 主页面
function ChatPage() {
const [collapsed, setCollapsed] = useState(false);
const [siderWidth, setSiderWidth] = useState(normalWidth);
Expand Down
Loading

0 comments on commit 9533ed5

Please sign in to comment.