Skip to content
On this page

React import 스타일

Title
React import 스타일
Category
React
Tags
Aliases
React import 스타일
Created
2 years ago
Updated
last year
  • 기본 가져오기 대신 destructured named imports를 사용하는 것이 앞으로 더 선호된다.

Example

jsx
import React from 'react';

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

// =>

function App() {
	return <h1>Hello World</h1>;
}
import React from 'react';

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

// =>

function App() {
	return <h1>Hello World</h1>;
}
jsx
import React from 'react';

function App() {
	const [text, setText] = React.useState('Hello World');
	return <h1>{text}</h1>;
}

// =>

import {useState} from 'react';

function App() {
	const [text, setText] = useState('Hello World');
	return <h1>{text}</h1>;
}
import React from 'react';

function App() {
	const [text, setText] = React.useState('Hello World');
	return <h1>{text}</h1>;
}

// =>

import {useState} from 'react';

function App() {
	const [text, setText] = useState('Hello World');
	return <h1>{text}</h1>;
}

References

Released under the MIT License.