How to create an equivalent of seaborn relplot with kind="line"

Hello,
I am trying to create the Plotly Express equivalent of the seaborn relplot avaliable at https://seaborn.pydata.org/generated/seaborn.relplot.html

fmri = sns.load_dataset(“fmri”)
g = sns.relplot(x=“timepoint”, y=“signal”,
hue=“event”, style=“event”, col=“region”,
kind=“line”, data=fmri)

Any pointers on whether and how it can be done in Plotly Express will be very helpful.

thanks.