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
<template> | |
<div class="bg-cover bg-center relative w-full xl:px-20 px-5 xl:pt-16 xl:pb-20 pt-10"> | |
<a v-on:click="choosePlan(plan)"> | |
<button class="py-4 w-full font-poppins text-white font-semibold bg-crail"> | |
Last | |
</button> | |
</a> | |
<a v-on:click="hi1()"> | |
<button class="py-4 w-full font-poppins text-white font-semibold bg-crail"> |
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
require('dotenv').config(); | |
module.exports = { | |
/* | |
** Headers of the page | |
*/ | |
head: { | |
htmlAttrs: { | |
lang: 'de', | |
}, |
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' | |
class QuickBooks extends React.Component { | |
constructor(props){ | |
super(props); | |
window.intuit.ipp.anywhere.setup({ | |
grantUrl: 'http://www.mycompany.com/HelloWorld/RequestTokenServlet', | |
datasources: { | |
quickbooks : true, |
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 { someMethod } from 'utils/graphql'; | |
// Actions | |
const REQUEST = 'path/to/REQUEST'; | |
const REQUEST_SUCCESS = 'path/to/REQUEST_SUCCESS'; | |
const REQUEST_FAIL = 'path/to/REQUEST_FAIL'; | |
// Reducer | |
const initialState = { | |
requesting: false, |
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
export default function define(runtime, observer) { | |
const main = runtime.module(); | |
main.variable(observer()).define(["md"], function(md){return( | |
md`# Stock Chart` | |
)}); | |
main.variable(observer("chart")).define("chart", ["d3","width","height","margin","rectColor","rectHeight","chartData","x","y","lineColor","yLine","line","hoverScale","dateFormat","priceFormat","apyFormat"], function(d3,width,height,margin,rectColor,rectHeight,chartData,x,y,lineColor,yLine,line,hoverScale,dateFormat,priceFormat,apyFormat) | |
{ | |
let svg = d3 | |
.create("svg") | |
.attr("viewBox", [0, 0, width, height]) |
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
/* | |
* @license | |
* steveyerigan.com | |
* Copyright 2021 Inc. All rights reserved. | |
* | |
*/ | |
var dataCacheName = 'steve-pwa'; | |
var cacheName = 'steve-pwa'; |
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, { useEffect } from "react"; | |
import styled from "styled-components"; | |
import NavDropdown from "react-bootstrap/NavDropdown"; | |
import { | |
listNotifications, | |
partialUpdateNotifications, | |
} from "features/notifications/thunks"; | |
import bellIcon from "images/bell.svg"; | |
import { useDispatch, useSelector } from "react-redux"; | |
import { useToasts } from "react-toast-notifications"; |