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
/* | |
* Highlight possibly demonetized words in yellow and likely demonetized words in orange | |
* Source for demonetized words list: https://docs.google.com/spreadsheets/d/1ozg1Cnm6SdtM4M5rATkANAi07xAzYWaKL7HKxyvoHzk | |
*/ | |
function runDemonetizationChecker() { | |
const { | |
possiblyDemonetized, | |
likelyDemonetized | |
} = getSheetValuesFromId(); | |
// Open the active document |
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
{ | |
"type": "text", | |
"id": "social_fancy_link", | |
"label": "Fancy", | |
"info": "https:\/\/fancy.com\/shopify" | |
}, | |
{ | |
"type": "text", | |
"id": "social_untappd_link", | |
"label": "Untappd", |
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
import React from 'react'; | |
import { | |
MDBStepper, | |
MDBStepperStep, | |
MDBStepperHead, | |
MDBStepperContent, | |
MDBStepperForm, MDBValidationItem, MDBRadio | |
} from 'mdb-react-ui-kit'; | |
export default function App() { |