Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
giovannipiller committed Feb 5, 2024
0 parents commit e4a04fd
Show file tree
Hide file tree
Showing 4 changed files with 367 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
347 changes: 347 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "react",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "src/index.tsx",
"dependencies": {
"react-bootstrap": "2.10.0"
},
"devDependencies": {
"@types/react": "18.2.43",
"typescript": "4.4.2"
}
}
5 changes: 5 additions & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import type { FormControlProps } from "react-bootstrap";

const MyProps: FormControlProps = {
placeholder: "test",
};

0 comments on commit e4a04fd

Please sign in to comment.