项目基础确认搭建完成

This commit is contained in:
2021-07-19 00:17:48 +08:00
parent 111a0149a9
commit 88bc6cde67
4 changed files with 19 additions and 43 deletions

View File

@@ -1,12 +1,13 @@
import { Component } from 'react';
import { Link } from 'react-router-dom';
import './index.css';
// copilot抄来的模板
export class AppContainer extends Component {
render() {
return (
<div className="App">
{this.props.children}
<p>展示页</p>
<Link to="/upload" className="btn btn-primary">前往</Link>
</div>
);
}