const deps = {
Link: Link.tag,
config: AppConfig.tag
}
const Component = () => {
const {Link, config} = useEnvironment(deps)
return <Link href={`${config.something}`}> Whatever </Link>
}
const deps = {
Link: Link.tag,
config: AppConfig.tag
}
const Component = () => {
const {Link, config} = useEnvironment(deps)
return <Link href={`${config.something}`}> Whatever </Link>
}