Skip to content
View liamtarpey's full-sized avatar
Block or Report

Block or report liamtarpey

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

  1. Loadable Components in React Loadable Components in React
    1
    import React, { PureComponent, Suspense, Fragment, lazy } from 'react';
    2
    import LoadableErrorBoundary from './LoadableErrorBoundary.jsx';
    3
    import LoadableConstants from './loadable.constants.js';
    4
    
    
    5
    // Private vars
  2. Loadable Error Boundary - React Loadable Error Boundary - React
    1
    import React, { PureComponent, Fragment } from 'react';
    2
    
    
    3
    class LoadableErrorBoundary extends PureComponent {
    4
        constructor() {
    5
            super();