How to use the cx/ui.expr function in cx

To help you get started, we’ve selected a few cx examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github codaxy / dashboards / app / routes / sign-in / index.js View on Github external
export default () => (
	
		
			<section>
				<div>
					<h2>Sign In</h2>
				</div>
				<p>
					Please sign in using one of the available authentication providers.
				</p>
				<p>
					<a href="#">
						<img src="~/assets/sign-in/google/btn_google_signin_dark_normal_web.png">
					</a>
				</p>

				<p>
					<a href="#">
						<img src="~/assets/sign-in/twitter/sign-in-with-twitter-gray.png">
					</a></p></section>
github codaxy / dashboards / app / layout / UserAccount.js View on Github external
<div>
					<p>
						<strong>
					</strong></p><strong>
					<p>
						
							Sign Out
						
					</p>
				</strong></div><strong>
			
			
				Sign In
			
		
	
);
</strong>
github codaxy / dashboards / app / layout / UserAccount.js View on Github external
"user",
				user &amp;&amp; {
					email: user.email,
					displayName: user.displayName,
					photoURL: user.photoURL,
					id: user.uid
				}
			);
		});
	}
}

export default (
	
		<div class="userinfo">
			
				<img style="height: 60px; display: block;" src="{bind(&quot;user.photoURL&quot;)}">
				<div>
					<p>
						<strong>
					</strong></p><strong>
					<p>
						
							Sign Out
						
					</p>
				</strong></div><strong>
			</strong><strong>
			</strong></div>
github codaxy / dashboards / app / routes / sign-in / index.js View on Github external
<p></p>

				<p>
					<a href="#">
						<img src="~/assets/sign-in/twitter/sign-in-with-twitter-gray.png">
					</a>
				</p>

				<p>
					<a href="#">
						<img src="~/assets/sign-in/github/SignInGitHub.png">
					</a>
				</p>
			

			<section>
				<div>
					<h2>Sign Out</h2>
				</div>
				<p>
					You're signed in as{" "}
					</p>

				<button>
					Sign Out
				</button>
			</section>
		
	
);