yj-oh / react-ts-boilerplate

๐Ÿ”ฅ๐Ÿš€ Boilerplate project for creating simple web application with React.js, TypeScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

๐Ÿ”ฅ๐Ÿš€ react-ts-boilerplate

  • Boilerplate project for creating simple web application with React.js, TypeScript
  • with Create React App

๐Ÿ”ฎ Dependencies

react styled-components

dependency version
react ^18.2.0
react-dom ^18.2.0
styled-components ^5.3.6
prettier ^2.7.1

๐Ÿคนโ€โ™‚๏ธ Usage

git clone https://github.com/yj-oh/react-ts-boilerplate.git
yarn install
yarn start

๐Ÿ—‚ Structure

๐Ÿ—‚ project
|-- ๐Ÿ“‚ node_modules
|-- ๐Ÿ“‚ public
|-- ๐Ÿ“‚ src
|   |-- ๐Ÿ“‹ App.tsx
|   |-- ๐Ÿ“‹ index.css
|   `-- ๐Ÿ“‹ index.tsx
|-- ๐Ÿ“‹ .gitignore
|-- ๐Ÿ“‹ .prettierrc
|-- ๐Ÿ“‹ package.json
|-- ๐Ÿ“‹ README.md
|-- ๐Ÿ“‹ tsconfig.json
`-- ๐Ÿ“‹ yarn.lock

๐Ÿงน Prettier

.prettierrc

{
  "arrowParens": "always",
  "bracketSpacing": true,
  "htmlWhitespaceSensitivity": "css",
  "insertPragma": false,
  "jsxBracketSameLine": false,
  "jsxSingleQuote": true,
  "printWidth": 80,
  "proseWrap": "preserve",
  "quoteProps": "as-needed",
  "semi": true,
  "singleQuote": true,
  "useTabs": true,
  "tabWidth": 4,
  "trailingComma": "all"
}
* References

โš™๏ธ ๊ธฐํƒ€ ์„ค์ •

๐Ÿ“œ License

MIT License

About

๐Ÿ”ฅ๐Ÿš€ Boilerplate project for creating simple web application with React.js, TypeScript

License:MIT License


Languages

Language:HTML 51.3%Language:TypeScript 25.3%Language:CSS 23.5%