构建一个简单的电商网站
1. 创建页面
首先,我们需要创建一个名为 pages 的子文件夹,并添加以下文件:
1.1 pages/products.jsx
"use strict";
import React from "react";
const Products = React.createClass ({
render() {
return (
<div />
);
}
});
module.exports = Products;
1.2 pages/company.jsx
"use strict";
import React from "react";
import { Grid, Row, Col, Panel } from "react-bootstrap";
const Company = React.createClass ({
render() {
return (
<Grid>
<Row>
<Col xs={12}>
<Panel>
<h1>The company</h1>
<p>Contact inf
超级会员免费看
订阅专栏 解锁全文
524

被折叠的 条评论
为什么被折叠?



