0
0

More than 3 years have passed since last update.

React入門(import, export)

Posted at

import, export

Hello Reactを表示するようまでをまとめています。
下の表示がディレクトリの構成です。

├── src
│   ├── App.js
│   ├── contexts
│   │   └── hello.js
App.js
import { Hello } from './contexts/hello.js';

function App() {
  return (
    <Hello />
  );
}

import { Hello } from './contexts/hello.js';
App.jsでHello関数を呼び出してretunでHello関数を表示しています。

hello.js
export const Hello = () => {
  return (
    <div>Hello React</div>
  )
}

hello.jsexportでHello関数を他のファイルでも使えるように設定しています。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0