Skip to content

Commit e357301

Browse files
committed
fix
1 parent 395f0b8 commit e357301

File tree

3 files changed

+16
-17
lines changed

3 files changed

+16
-17
lines changed

src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import './App.css';
2-
import { BrowserRouter, Route, Routes, Navigate } from "react-router-dom"
2+
import { BrowserRouter, Route, Routes } from "react-router-dom"
33
import Home from "./pages/home/home"
44

55
function App() {

src/component/linkCard/linkCard.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import React from "react";
2-
import { Button, Typography,Avatar } from "antd";
3-
import { Card, List } from 'antd';
2+
import { Button,Avatar, Card } from "antd";
43
import './linkCard.css';
54

6-
const { Paragraph } = Typography;
5+
76
const { Meta } = Card;
87

98
const LinkCard = (props) => {

src/component/webContent/webContent.js

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
import React from "react";
22
import { Layout, theme } from "antd";
3-
import { Input, Space, Select } from 'antd';
3+
// import { Input, Space, Select } from 'antd';
44
import "./webContent.css";
55

66
const { Content } = Layout;
7-
const { Search } = Input;
8-
9-
const options = [
10-
{
11-
value: 'baidu',
12-
label: '百度',
13-
},
14-
{
15-
value: 'google',
16-
label: '谷歌',
17-
},
18-
];
7+
// const { Search } = Input;
8+
9+
// const options = [
10+
// {
11+
// value: 'baidu',
12+
// label: '百度',
13+
// },
14+
// {
15+
// value: 'google',
16+
// label: '谷歌',
17+
// },
18+
// ];
1919

2020

2121
const WebContent = (props) => {

0 commit comments

Comments
 (0)