12 lines
207 B
React
12 lines
207 B
React
|
import React from "react";
|
||
|
import { Link } from "react-router-dom";
|
||
|
|
||
|
export default function LandingPage() {
|
||
|
return (
|
||
|
<div>
|
||
|
<Link to="/editor">editor</Link>
|
||
|
LandingPage
|
||
|
</div>
|
||
|
);
|
||
|
}
|