stylesheet
v0.9.4arrow_drop_downv0.9.4
v0.9.3
STATUS
Passing
DOWNLOADS
3
VISIBILITY
Public
PUBLISHED
6 years ago
SIZE
3 KB
1 contributor
Like
Install stylesheet as a package?
Copied
npm i @bit/giladshoham.react-hooks.the-platform.stylesheet
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
and packages in Bit or NPM to the example. any of the 1 million componentstoggle layout
chevron_left
chevron_right
<Stylesheet>
Lazy load a stylesheet.
Props
href: string
import React from 'react';
import { Stylesheet } from 'the-platform';
function App() {
return (
<div>
<h1>Styles</h1>
<React.Suspense maxDuration={300} fallback={'loading...'}>
<Stylesheet href="style.css" />
</React.Suspense>
</div>
);
}
export default App;