diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..f8e49f2 --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,7 @@ +FROM gitpod/workspace-full + +# Install custom tools, runtimes, etc. +# For example "bastet", a command-line tetris clone: +# RUN brew install bastet +# +# More information: https://www.gitpod.io/docs/config-docker/ diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..8051bc9 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,6 @@ +image: + file: .gitpod.Dockerfile + +tasks: + - init: yarn install && yarn run build + command: yarn run start diff --git a/readme.md b/readme.md index 59a2c2e..f0d5b19 100644 --- a/readme.md +++ b/readme.md @@ -1 +1,5 @@ +[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/code-hike/react-tutorial-demo) + Rebuilding the [official "Intro to React" tutorial](https://reactjs.org/tutorial/tutorial.html) with [Code Hike](https://codehike.org). Content from the ["React with Hooks"](https://reactwithhooks.netlify.app/) version of the tutorial. Work in progress. + +# TODO:한글화, HOT Reloading 기능 추가 diff --git a/src/tutorial.mdx b/src/tutorial.mdx index bc7ee18..7727b83 100644 --- a/src/tutorial.mdx +++ b/src/tutorial.mdx @@ -4,8 +4,9 @@ import { Note } from "./note" -# Tutorial: Intro to React +# 튜토리얼: React에 대한 인트로 +이 튜토리얼은 React에 대한 어떤 선행지식도 요구하고 있지 않습니다. This tutorial doesn't assume any existing React knowledge. ## Before We Start the Tutorial {#before-we-start-the-tutorial}