2024-11-27 01:02:05 +08:00
|
|
|
import { useState } from "react";
|
|
|
|
|
2024-11-27 19:52:49 +08:00
|
|
|
import ReactDOMServer from "react-dom/server";
|
|
|
|
import { useLocation } from "react-router-dom";
|
2024-11-27 01:02:05 +08:00
|
|
|
|
|
|
|
const MyComponent = () => {
|
2024-11-27 19:52:49 +08:00
|
|
|
return <div>Hello, World!</div>;
|
2024-11-27 01:02:05 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
export default function Routes() {
|
2024-11-27 19:52:49 +08:00
|
|
|
const htmlString = ReactDOMServer.renderToString(<MyComponent />);
|
2024-11-27 01:02:05 +08:00
|
|
|
|
2024-11-27 19:52:49 +08:00
|
|
|
return <div>安装重构</div>;
|
|
|
|
}
|