Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add - automated change by default gitpod notification #1

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -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/
6 changes: 6 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
image:
file: .gitpod.Dockerfile

tasks:
- init: yarn install && yarn run build
command: yarn run start
4 changes: 4 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -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 기능 추가
3 changes: 2 additions & 1 deletion src/tutorial.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ import { Note } from "./note"
<Note style={{ height: "100%" }} height={290} />
</Column>

# 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}
Expand Down