This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<TouchableOpacity | |
... | |
accessibilityHint="Opens in a new window" | |
accessibilityRole="link" | |
> | |
Check symptoms | |
</TouchableOpacity> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<TouchableOpacity | |
accessibilityRole="button" | |
accessibilityState={disabled: true} | |
... | |
> | |
Submit code | |
</TouchableOpacity> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<TouchableOpacity | |
accessibilityLabel="Close" | |
accessibilityRole="button" | |
... | |
> | |
<!-- Icon... --> | |
</TouchableOpacity> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (Platform.OS === 'android') { | |
return ( | |
<Ripple onPress={onPressHandler} ...> | |
{content} | |
</Ripple> | |
); | |
} | |
return ( | |
<TouchableOpacity onPress={onPressHandler} ...> | |
{content} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
await graphQLClient.rawRequest(productUpdateMutation, productInput).then(({ errors, data, extensions, headers, status })) => { | |
console.log(JSON.stringify(data, undefined, 2)) | |
console.log(`There are ${extensions.cost.throttleStatus.currentlyAvailable} rate limit points available/n`) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
then(({ errors, data, extensions, headers, status })) => { | |
console.log(JSON.stringify(data, undefined, 2)) | |
console.log(`There are ${extensions.cost.throttleStatus.currentlyAvailable} rate limit points available/n`) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{%- if shop.customer_accounts_enabled -%} | |
<ul> | |
{%- if customer -%} | |
<li> | |
<a href="/account">Account</a> | |
</li> | |
<li> | |
{{ 'Log out' | customer_logout_link }} | |
</li> | |
{%- else -%} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="{{ routes.all_products_collection_url }}" class="text-link text-link--accent"> | |
{{ 'cart.general.continue_shopping' | t }} | |
</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="/collections/all" class="text-link text-link--accent"> | |
Continue shopping | |
</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="{{ routes.cart_url }}" method="post" novalidate class="cart"> | |
<table> | |
… | |
</table> | |
</form> |