drawDB/src/pages/landing_page.jsx

13 lines
220 B
React
Raw Normal View History

2023-09-19 20:47:04 +08:00
import React from "react";
import { Link } from "react-router-dom";
export default function LandingPage() {
return (
<div>
<Link to="/editor">editor</Link>
2023-09-19 20:47:06 +08:00
<br />
2023-09-19 20:47:04 +08:00
LandingPage
</div>
);
}