Commit d7b95792 authored by Chunchi Che's avatar Chunchi Che

update small

parent d36de2f7
Pipeline #20430 failed with stages
in 3 minutes and 34 seconds
......@@ -21,7 +21,6 @@ const contentStyle: React.CSSProperties = {
};
const siderStyle: React.CSSProperties = {
textAlign: "center",
lineHeight: "120px",
position: "fixed",
overflow: "auto",
......
import React from "react";
import { Timeline } from "antd";
import { UserOutlined, SettingOutlined } from "@ant-design/icons";
const DuelTimeLine = () => <Timeline items={[]} />;
const DuelTimeLine = () => <Timeline items={[
{
dot: <UserOutlined />,
children: "对手消息",
color: "red"
},
{
dot: <UserOutlined />,
children: "自己消息",
color: "green"
},
{
dot: <SettingOutlined />,
children: '系统消息',
},
]} />;
export default DuelTimeLine;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment