This commit is contained in:
Maciej Caderek
2022-02-09 16:28:36 +01:00
parent 4785b61644
commit 20f415d70c
17 changed files with 343 additions and 47 deletions

View File

@@ -0,0 +1,10 @@
import { Component, For } from "solid-js";
import { Handlers } from "../../types";
import Scrollable from "./reusable/Scrollable";
import "./Share.css";
const Share: Component<{ handlers: Handlers }> = (props) => {
return <Scrollable class="share">Share</Scrollable>;
};
export default Share;