New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@algolia/satellite

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@algolia/satellite

Algolia design system React components


Version published
Weekly downloads
514
decreased by-12.73%
Maintainers
56
Weekly downloads
 
Created

Satellite

Nothing to see here

Installation

yarn add @algolia/satellite

Usage

Wrap your application

import React from "react";
import ReactDOM from "react-dom";
import { Satellite } from "@algolia/satellite";

import YourApplication from "./YourApplication";

ReactDOM.render(
  <Satellite>
    <YourApplication />
  </Satellite>,
  document.getElementById("root")
);

Profit!

import { Button } from "@algolia/satellite";
// Alternatively
// import Button from "@algolia/satellite/Button";

const YourPage = () => (
  <div>
    <Button>Hurray!</Button>
  </div>
);

FAQs

Package last updated on 26 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts