https://github.com/callor/callor-cra-template-starter
Create-React-App SimpleTemplate
https://github.com/callor/callor-cra-template-starter
react simple-project template
Last synced: 4 months ago
JSON representation
Create-React-App SimpleTemplate
- Host: GitHub
- URL: https://github.com/callor/callor-cra-template-starter
- Owner: callor
- Created: 2024-08-07T07:10:32.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-06T00:15:08.000Z (almost 2 years ago)
- Last Synced: 2025-09-19T21:24:55.197Z (9 months ago)
- Topics: react, simple-project, template
- Language: JavaScript
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Starter create-react-app Template
A very simple starter template for [create-react-app](https://create-react-app.dev).
이 템플릿은 매우 심플한 프로젝트를 만들어 줍니다.
Use this template if you want to try something out quickly and profit from the `create-react-app` ecosystem.
`create-react-app` 을 사용하여 빠르게 프로젝트를 시작하려면 이 템플릿을 사용하세요.
## Usage : 프로젝트 생성
```sh
npx create-react-app myproject --template starter
cd myproject
npm start
```
The template creates the following code structure
이 템플릿은 다음의 파일들을 자동생성합니다.
`public/index.html`:
```html
Hello React
```
`src/index.js`:
```js
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import reportWebVitals from "./reportWebVitals";
const root = ReactDOM.createRoot(document.querySelector("#root"));
root.render(
);
reportWebVitals(console.log);
```
`src/App.jsx`:
```js
const App = () =>
Hello React Start App
;
export default App;
```