完成项目基本结构

This commit is contained in:
2021-07-17 23:36:16 +08:00
parent c4f95a0ead
commit 111a0149a9
8 changed files with 54 additions and 37 deletions

0
src/index/index.css Normal file
View File

13
src/index/index.js Normal file
View File

@@ -0,0 +1,13 @@
import { Component } from 'react';
import './index.css';
// copilot抄来的模板
export class AppContainer extends Component {
render() {
return (
<div className="App">
{this.props.children}
</div>
);
}
}