- Redux Quick Start Guide
- James Lee Tao Wei Suresh Kumar Mukhiya
- 180字
- 2021-07-02 12:40:27
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in the text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "According to the BMI scale, someone with bmi between 30.0 and 54 is said to have obesity"
A block of code is set as follows:
import { BrowserRouter } from 'react-router-dom';
ReactDOM.render(
<BrowserRouter>
<App />
</BrowserRouter>,
document.getElementById('root')
);
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
<Route
path="/about"
render={() => (
<div> This is about us page. </div>
)}
/>
Any command-line input or output is written as follows:
$ yarn add connected-react-router --exact
Bold: Indicates a new term, an important word, or words that you see on screen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Select System info from the Administration panel."
- JSP網絡編程(學習筆記)
- 自己動手寫Java虛擬機
- JMeter 性能測試實戰(第2版)
- Securing WebLogic Server 12c
- Kali Linux Wireless Penetration Testing Beginner's Guide(Third Edition)
- Mastering Apache Spark 2.x(Second Edition)
- 持續輕量級Java EE開發:編寫可測試的代碼
- Azure Serverless Computing Cookbook
- C# Multithreaded and Parallel Programming
- .NET Standard 2.0 Cookbook
- Three.js權威指南:在網頁上創建3D圖形和動畫的方法與實踐(原書第4版)
- Web前端開發最佳實踐
- Google Adsense優化實戰
- UI動效設計從入門到精通
- Spring Boot從入門到實戰