The
Slate Design System is an open source resource with examples of components, constants, and experiences. Any code changes made to the components in the Design System will change the appearance and function of
Slate in production.
We wanted to build product out in the open, so other Filecoin & IPFS developers could freely use the code to make their own applications on top of the
Filecoin Network. A lot of the functionality of Slate is made possible by
Textile's Powergate and
Textile's Hub.
You can use these components, experiences, and constants in your own React projects. First, install the
npm module:
0
npm install --save slate-react-system
Now you can import React components:
0
import { ButtonPrimary } from "slate-react-system";
2
const Component = () => <ButtonPrimary>Hello world</ButtonPrimary>;