Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sairohitp committed Nov 13, 2023
1 parent f08779f commit 50d92e4
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "gitAutoCommit",
"type": "shell",
"command": "/bin/bash",
"args": [
"-c",
"git add . && git commit -m 'commit'"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

10 changes: 10 additions & 0 deletions src/pages/Education/Education.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react'

const Education = () => {
return (
<>
</>
)
}

export default Education

0 comments on commit 50d92e4

Please sign in to comment.