1.0.2 • Published 3 years ago

video-wayfinder-types-developer v1.0.2

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
3 years ago

Wayfinder

Build Publish

A shared type library for use across the Wayfinder video management system.

Installation

:warning: Since this is an internal package hosted on GitHub, there are a few extra steps you'll have to take before installing. Refer to GitHub's documentation on how to get set up.

Once you're authenticated and your project is configured to use GitHub packages, install the package as you would any other dev dependency:

npm install --save-dev @cbs-sports/video-wayfinder-types

Usage

import React from "react";
import { Event } from "@cbs-sports/video-wayfinder-types";

export default function Events() {
  const [events, setEvents] = React.useState<Event[]>([]);
  // ...
}