-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from gamble369/main
task1: gamble369
- Loading branch information
Showing
18 changed files
with
4,742 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Web3 前端训练营报名 | ||
|
||
## 个人信息 | ||
|
||
* Github ID: gamble369 | ||
|
||
* Wechat ID: brianna_0111 | ||
|
||
* Openbuild Username: Brianna | ||
|
||
(首次如果没有,学习完毕钱包在填写) | ||
|
||
* ERC20 钱包地址: 0x0ed9Ac6Bdbbc89467DfF741f19E0dBEeF46380Ec | ||
* | ||
|
||
### 个人介绍 | ||
|
||
+ 后端开发者 (`Golang`, `Python`) | ||
|
||
+ 向着全栈开发者 和 `Web3.0` 的世界全速出发 |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# todo List | ||
|
||
### 说明 | ||
|
||
使用工具 `react` + `javascript` + `vite` | ||
|
||
使用 `vite` 创建一个react项目,比react脚手架 `create-react-app`创建更快,可选方案更灵活; | ||
|
||
`vite` 创建命令 `npm create vite@latest`; | ||
|
||
### 运行截图 | ||
|
||
![alt 截图](https://pic.imgdb.cn/item/666109f95e6d1bfa054afddb.gif) | ||
|
||
![alt 截图](./todolist.png) | ||
[截图](./todolist.gif) | ||
|
||
### 项目说明 | ||
|
||
+ 该项目主要采用类式组件; | ||
|
||
+ 父子组件的通信方式,采用状态升级,即将通用数据放到`App`父组件的 `state` 中; | ||
|
||
### 参考资料 | ||
|
||
+ [056_尚硅谷_react教程_TodoList案例_bilibili](https://www.bilibili.com/video/BV1wy4y1D7JT?p=56&spm_id_from=pageDriver&vd_source=c7a17b24f0b5a70e4b025703870eec19) |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Todo List</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.jsx"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.