Skip to content

Commit

Permalink
task1: smallbonelu
Browse files Browse the repository at this point in the history
  • Loading branch information
smallbonelu committed Jun 6, 2024
1 parent 21a7744 commit 5451cc6
Show file tree
Hide file tree
Showing 23 changed files with 4,277 additions and 0 deletions.
18 changes: 18 additions & 0 deletions members/smallbonelu/task1/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
24 changes: 24 additions & 0 deletions members/smallbonelu/task1/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
32 changes: 32 additions & 0 deletions members/smallbonelu/task1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# ToDo List Demo
![alt 待办事项](./images/demo.png)

## 技术栈
React + TypeScript + Vite + TailwindCSS

## 功能
* 添加待办事项:用户可以通过输入框输入待办事项,并点击(或回车)按钮进行添加。

* 删除待办事项:每个待办事项旁边有一个删除按钮,点击后可以删除该事项。

* 标记完成:用户可以通过点击待办事项,标记其为已完成或未完成。

* 保存到本地存储,下次打开页面时,将自动同步数据。

## 使用说明

进入项目目录,运行如下命令
1. 安装依赖
```bash
npm install
```

2. 运行

```bash
npm run dev
```

3. 浏览器访问 http://localhost:5173/


Binary file added members/smallbonelu/task1/images/demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions members/smallbonelu/task1/index.html
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.tsx"></script>
</body>
</html>
Loading

0 comments on commit 5451cc6

Please sign in to comment.