index.js 302 Bytes
import React from "react";

const QueryTracking = () => {
  const style = {
    width: "100%",
    height: "100%",
    display: "flex",
    justifyContent: "center",
    alignItems: "center",
    fontSize: 30
  };
  return <div style={style}>页面开发中...</div>;
};

export default QueryTracking;