Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@
"private": true,
"dependencies": {
"@giscus/react": "^2.0.3",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"date-fns": "^2.28.0",
"lodash": "^4.17.21",
"node-sass": "^7.0.1",
"plop": "^3.0.5",
"react": "^18.0.0",
Expand Down Expand Up @@ -51,8 +54,8 @@
]
},
"devDependencies": {
"typescript": "^4.6.4",
"puppeteer": "^13.7.0",
"react-snap": "^1.23.0",
"puppeteer": "^13.7.0"
"typescript": "^4.6.4"
}
}
14 changes: 14 additions & 0 deletions src/meta/play-meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ QuoteGenerator,
PasswordGenerator,
WhyTypescript,
NetlifyCardGame,
Calendar,
FunQuiz,
//import play here
} from "plays";
Expand Down Expand Up @@ -242,6 +243,19 @@ export const plays = [
language: 'js',
featured: true,
}, {
id: 'pl-calendar',
name: 'Calendar',
description: 'Simple calendar app to manage events',
component: () => {return <Calendar />},
path: '/plays/calendar',
level: 'Intermediate',
tags: 'JSX,Hooks,Typescript',
github: 'vincentBCP',
cover: '',
blog: '',
video: '',
language: 'ts'
}, {
id: 'pl-fun-quiz',
name: 'Fun Quiz',
description: 'Its a Fun Quiz app which lets player to choose desirable category to answer 20 unique question with 4 options and pick the correct one.',
Expand Down
Loading