The next-generation TSX for creating declarative User Interfaces.
The familiarity of TSX, with native control flow. Soon...
The familiarity of TSX, with native control flow. Soon...
export function Profile({ user }) {
return (
<div class="wrapper">
@if (user.isAdmin) {
<AdminPanel />
} @else if (user.isMember) {
<MemberDashboard />
} @else {
<GuestView />
}
</div>
);
}