Skip to content

Instantly share code, notes, and snippets.

View tarang9211's full-sized avatar
🦖
Focusing

Tarang Hirani tarang9211

🦖
Focusing
View GitHub Profile
@tarang9211
tarang9211 / questions.js
Created September 10, 2018 05:20
Data for input fields
const questions = [
{
id: 0,
question: "What is your name?",
value: ""
},
{
id: 1,
question: "What is your dog's name?",
value: ""
@tarang9211
tarang9211 / app.js
Last active September 10, 2018 12:57
import React, { Component } from 'react';
class App extends Component {
state = {
questions: this.props.questions,
showState: false,
};
handleChange = id => e => {
import React, { Component } from 'react';
class App extends Component {
render() {
return (
<div className='App'>
<form>
<button type="submit">Submit</button>
</form>
import React, { Component } from 'react';
class App extends Component {
state = {
inputs: [],
showState: false
};
handleSubmit = (event) => {
event.preventDefault();
import React, { Component } from 'react';
class App extends Component {
state = {
inputs: [],
showState: false
};
handleSubmit = (event) => {
event.preventDefault();
import React, { Component } from 'react';
import styles from './step-list.module.scss';
class StepList extends Component {
steps = [
{ key: 0, title: 'Overview' },
{ key: 1, title: 'Dates' },
{ key: 2, title: 'Add Seminars' },
{ key: 3, title: 'Upload an image' },
{ key: 4, title: 'Preview' }
import { ApolloError } from 'apollo-server';
import jwt from 'jsonwebtoken';
import ConferenceModel from '../models/conference';
import SubeventModel from '../models/subevent';
import uploadImage from '../utils/image-upload';
export default {
Mutation: {
async createConference(roots, args, context) {
const { token } = context;
/** Fetch all conferences */
let selectConferencesQuery;
try {
selectConferencesQuery = await query(
'SELECT id, name, description, dates, tags, image FROM conferences'
);
} catch (e) {}
/** Fetch the count of subevents related to a conference */
const conferenceIds = selectConferencesQuery.results.map(
import React from 'react';
import { Navbar } from 'shared/components';
import { Query } from 'react-apollo';
import gql from 'graphql-tag';
const Home = () => {
return (
<>
<Navbar isAuthenticated={true} />
<div className="container">
@tarang9211
tarang9211 / CurvedUIView.swift
Created May 28, 2019 19:01 — forked from anitaa1990/CurvedUIView.swift
A Swift extension of UIView to display a curved view
import UIKit
extension UIView {
/* Usage Example
* bgView.addBottomRoundedEdge(desiredCurve: 1.5)
*/
func addBottomRoundedEdge(desiredCurve: CGFloat?) {