Handle data endpoint

This commit is contained in:
Alexandre
2021-02-22 20:15:31 +01:00
parent 8bf4130ff1
commit 273c194db5
2 changed files with 14 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { DataFn } from "solid-app-router";
import { mergeProps } from "solid-js";
const HomeData: DataFn = (props) => {
return mergeProps(props, {
name: "about",
});
};
export default HomeData;