Skip to content

Commit 8e0291b

Browse files
authored
Fix share name issue (pmndrs#206)
Fix the share name issue inside examples/*/package.json
1 parent bf50c4d commit 8e0291b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

examples/hacker_news/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "jotai-demo",
2+
"name": "hacker_news",
33
"version": "1.0.0",
4-
"description": "An async-read demo with Jotai",
4+
"description": "Demonstrate a news articles with jotai, hit next to see more articles.",
55
"keywords": [],
66
"main": "src/index.js",
77
"dependencies": {

examples/text_length/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "jotai-demo",
2+
"name": "text_length",
33
"version": "1.0.0",
4-
"description": "A basic demo with Jotai",
4+
"description": "Count the length and show the uppercase of any text",
55
"keywords": [],
66
"main": "src/index.js",
77
"scripts": {

examples/todos/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "jotai-demo",
2+
"name": "todos",
33
"version": "1.0.0",
4-
"description": "A todo demo with jotai",
4+
"description": "Record your todo list by typing them into this app, check them if you have completed the task, and switch between Completed and Incompleted to see the status of your task",
55
"keywords": [],
66
"main": "src/index.tsx",
77
"dependencies": {

examples/todos_with_atomFamily/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "react-typescript",
2+
"name": "todos_with_atomFamily",
33
"version": "1.0.0",
4-
"description": "React and TypeScript example starter project",
4+
"description": "Implement a todo list using atomFamily and localStorage, you can store your todo list to localStorage by click Save to localStorage, then remove your todo list and restore them by click Load from localStorage",
55
"keywords": [
66
"typescript",
77
"react",

0 commit comments

Comments
 (0)