LinkList/frontend/components/editor.tsx

13 lines
197 B
TypeScript
Raw Normal View History

2021-03-31 00:28:08 -04:00
import React from "react";
import Analytics from "components/Analytics/index";
const Editor: React.FC = () => {
return (
<div>
<Analytics />
</div>
);
};
export default Editor;