- Documentation can be found here: docs.syncstream.ai
npm install @syncstreamai/syncstream
# or
yarn add @syncstreamai/syncstream
import { OneTap, SyncstreamProvider } from "@syncstreamai/syncstream";
import "@syncstreamai/syncstream/dist/index.css";
const App = () => {
return (
<div
style={{
background: "black",
width: "100vw",
height: "100vh",
}}
>
<SyncstreamProvider clientId="EXAMPLE_CLIENT_ID">
<OneTap contextUri="spotify:artist:2hlmm7s2ICUX0LVIhVFlZQ" />
</SyncstreamProvider>
</div>
);
};
export default App;
If you would like to become a Syncstream contributor, the first step is to read the contributing guide here in its entirety.