Détail du package

usefloc

catminusminus14MIT0.1.4

React Hook to use FLoC API

yarn add usefloc

react, react hook, floc

readme

useFLoC

React Hook to use FLoC API

yarn add usefloc

Example

import * as React from 'react';
import { useFLoC } from 'usefloc';

const App = () => {
  const {id, version} = useFLoC();
  return (
    <div>
      id: {id}, version: {version}
    </div>
  );
};