Sign in
Sign up

    Live Loading

    Global Posts

    View on GitHub
React の HelloWorld

@shimehituzi - 3y

  • Typescript です
  • 関数コンポーネントです
  • npx create-react-app --template typescript example-app で初期化したものを書き直します

index.tsx

1import React from 'react'
2import { render } from 'react-dom'
3import { App } from './App'
4
5render(<App/>, document.getElementById('#root'))

App.tsx

1import React from 'react'
2
3export const App: React.FC = () => {
4 return (
5 <div>HelloWorld</div>
6 )
7}
Comment