@embra/i18n - v0.0.4
    Preparing search index...

    Variable TransConst

    Trans: FC<PropsWithChildren<TProps>> = ...

    Insert React elements to the translation message.

    <Trans message="a{{b}}c{{d}}e">
    <h1 data-t-slot="b">B</h1>
    <p data-t-slot="d">D</p>
    </Trans>

    <>
    a<h1 data-t-slot="b">B</h1>c<p data-t-slot="d">D</p>e
    <>

    data-t-slot can be ignored if there is only one placeholder.

    <Trans message="a{{b}}c">
    <h1>B</h1>
    </Trans>

    <>
    a<h1>B</h1>c
    </>