UNPKG

@szmg-fe/tarco

Version:

function library in Taro

15 lines (13 loc) 382 B
import { compose } from "@szmg-fe/funba/ramda"; import setNavigationBarTitle from "./setNavigationBarTitle"; import { useEffect } from "react"; /** * 小程序title set hooks * @param str title */ export default function useSetTitle(str: string) { const setTitle = compose(setNavigationBarTitle, () => str); useEffect(() => { str && setTitle() }, [str]); }