DEV Community

gk
gk

Posted on

React Advance IDEA while using the ternary operator

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>
);
Enter fullscreen mode Exit fullscreen mode

}

export default ConditionalRenderingExample;

Top comments (0)