- Beginning React
- Andrea Chiarelli
- 201字
- 2021-07-23 17:10:28
Conventions Used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "By wrapping the App component, the BrowserRouter component enriches it with routing capabilities."
A block of code is set as follows:
class Catalog extends React.Component {
constructor() {
super();
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
import { BrowserRouter } from 'react-router-dom'
ReactDOM.render(
<BrowserRouter>
<App />
</BrowserRouter>
, document.getElementById('root'));
Any command-line input or output is written as follows:
create-react-app --version
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Now we need to create a view to display the Catalog component or the About page."
Activity: These are scenario-based activities that will let you practically apply what you've learned over the course of a complete section. They are typically in the context of a real-world problem or situation.
Warnings or important notes appear like this.
- 數據結構和算法基礎(Java語言實現)
- Learning ArcGIS Pro 2
- JavaScript從入門到精通(第3版)
- 教孩子學編程:C++入門圖解
- CouchDB and PHP Web Development Beginner’s Guide
- Python機器學習:手把手教你掌握150個精彩案例(微課視頻版)
- Mastering Ext JS
- 零基礎學單片機C語言程序設計
- Python算法指南:程序員經典算法分析與實現
- Mastering Unity 2D Game Development(Second Edition)
- Python全棧數據工程師養成攻略(視頻講解版)
- 計算機應用基礎案例教程
- AMP:Building Accelerated Mobile Pages
- Web開發的平民英雄:PHP+MySQL
- 秒懂算法:用常識解讀數據結構與算法