while converting vue files in jetstream to react.js files i found # in template tag I think it's related to Laravel component but I don't know how to write it in react.js component.
in Vue
<template #trigger>
<template #content>
in livewire
<x-slot name="trigger">
<x-slot name="content">
what's equivalent of that in React.js?