Skip to content

Instantly share code, notes, and snippets.

View dalyaka's full-sized avatar
💁‍♀️

Ida Soboleva dalyaka

💁‍♀️
View GitHub Profile
import React, { useEffect, useReducer } from 'react'
import { StyledAnimation } from './AnimationContainer.styled'
interface Props {
isVisible: boolean,
animation: {
open: string,
default: string
close?: string

Privacy Policy

As Local app is a Free app. This SERVICE is provided by at no cost and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at As Local unless otherwise defined in this Privacy Policy.

DEFAULT RESPONSE(for all discussions requests) =
return ({
discussion: {
storyId,
insightThreads: {
[insight.id]: [
{
threadId, top, left, comments: []
},
@dalyaka
dalyaka / gulpfile.js
Created November 5, 2015 13:06 — forked from danharper/gulpfile.js
New ES6 project with Babel, Browserify & Gulp
var gulp = require('gulp');
var sourcemaps = require('gulp-sourcemaps');
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
var browserify = require('browserify');
var watchify = require('watchify');
var babel = require('babelify');
function compile(watch) {
var bundler = watchify(browserify('./src/index.js', { debug: true }).transform(babel));