Skip to content
View CantFayle's full-sized avatar
☮️
☮️
  • 11:43 (UTC +01:00)
Block or Report

Block or report CantFayle

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. react-native-device-info react-native-device-info Public

    Forked from react-native-device-info/react-native-device-info

    Device Information for React Native iOS and Android

    Java

  2. react-native-send-intent react-native-send-intent Public

    Forked from lucasferreira/react-native-send-intent

    React Native Android module to use Android's Intent actions for send text to shareable apps or make phone calls or opening third party apps

    Java

  3. cantfayle.github.io cantfayle.github.io Public

    JavaScript

  4. hooks-workshop hooks-workshop Public

    TypeScript 1

  5. useHistory.js - state useHistory.js - state
    1
    import { useState } from 'react';
    2
    
                  
    3
    /**
    4
     * @typedef {Object} useUndoReturn
    5
     * @property {function} addSnapshot Push a new snapshot to the past array
  6. React Router ProtectedRoute React Router ProtectedRoute
    1
    import { Navigate, Outlet, useLocation } from 'react-router-dom';
    2
    
                  
    3
    export const ProtectedRoute = ({ redirectPath = '/login', user, children }) => {
    4
      const prevLocation = useLocation();
    5
      if (!user) {