Fix the annoying Explorer sidebar of webtask.io and make it scrollable. 😊
I use Google Chrome browser so I installed User CSS extension which basically allows one to add custom CSS to add a website.
Here's the custom css to add:
<?php | |
class AbanteCartValetDriver extends ValetDriver | |
{ | |
/** | |
* Determine if the driver serves the request. | |
* | |
* @param string $sitePath | |
* @param string $siteName | |
* @param string $uri |
here |
import React from "react"; | |
import axios from "axios"; | |
class App extends React.Component { | |
constructor() { | |
super(); | |
this.state = { | |
todos: [], | |
isFetching: true | |
}; |
Fix the annoying Explorer sidebar of webtask.io and make it scrollable. 😊
I use Google Chrome browser so I installed User CSS extension which basically allows one to add custom CSS to add a website.
Here's the custom css to add:
const trafficLightMachine = Machine({ | |
id: "trafficLight", | |
initial: "red", | |
on: { | |
NEXT: "green" | |
} | |
}) |
Machine({ | |
id: "electricFan", | |
type: "parallel", | |
states: { | |
power: { | |
id: "power", | |
initial: "turnedOff", | |
states: { | |
turnedOff: { | |
on: { |
const allProducts = ["Auction! Desktop", "Auction! Cloud", "Auction! Online", "Auction! Mobile", "Auction! Reservations"]; | |
const orderMachine = Machine({ | |
id: 'order', | |
initial: 'idle', | |
context: { | |
cart: [], | |
loggedInuser: { | |
organizations: null, | |
profile: null |
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |