import React from 'react';
function ConditionalRenderingExample({ isUserLoggedIn }) {
const Condition = isUserLoggedIn ? (
<p>Welcome, User!</p>
) : (
<p>Please log in to access your account.</p>
)
return (
<div>
<Condition />
</div>
);
}
export default ConditionalRenderingExample;
Top comments (0)