Skip to content
View arjanc's full-sized avatar

Block or report arjanc

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. boilerplate-reactjs-ssr-typescript boilerplate-reactjs-ssr-typescript Public

    Boilerplate ReactJS with serverside rendering. Powered by TypeScript, Redux, GraphQL and ExpressJS.

    TypeScript

  2. graphql-example-server graphql-example-server Public

    JavaScript

  3. NR6-animations NR6-animations Public

    Animations for the 2019 NR6 website.

    HTML

  4. Accordion item class written in Type... Accordion item class written in TypeScript.
    1
    import * as React from 'react';
    2
    import * as style from './Accordion.css';
    3
    import Button from 'react-toolbox/lib/button';
    4
    import { history } from '../../store/configureStore';
    5
    
                  
  5. useResizeObserver useResizeObserver
    1
    import { useEffect, useState, useRef } from "react";
    2
    
                  
    3
    function useResizeObserver(resizeSubject) {
    4
      const [contentRect, setContentRect] = useState({});
    5
      const resizeObserver = useRef(null);
  6. Check if dates fall inside a range Check if dates fall inside a range
    1
    /**
    2
     * Helper function to check if a date range is overlapping of inside the given from/to dates
    3
     *
    4
     * @param from        String    from date "2022-02-31"
    5
     * @param to          String    to date "2022-02-31"