import { Component, createRef } from 'inferno'; export class Autofocus extends Component { ref = createRef(); componentDidMount() { setTimeout(() => { this.ref.current?.focus(); }, 1); } render() { return (
{this.props.children}
); } }