https://github.com/browserless/browserless-elements
A little small UI library for browserless' projects
https://github.com/browserless/browserless-elements
Last synced: about 1 month ago
JSON representation
A little small UI library for browserless' projects
- Host: GitHub
- URL: https://github.com/browserless/browserless-elements
- Owner: browserless
- License: mit
- Created: 2023-08-25T15:51:20.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-03T21:27:05.000Z (almost 2 years ago)
- Last Synced: 2025-04-17T15:13:29.829Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.08 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @browserless/elements
> Note: This project is still in beta. Thing will break.
A little small UI library that has browserless' visual identity throught its projects. This will be heavily used in some to-be-released projects. Stay tuned!
## How to use
`npm intall "@browserless.io/elements"` as any other npm package and use it in React:
```jsx
import { Aside, AsideItem, Page } from "@browserless.io/elements";
import React from "react";
import "@browserless.io/elements/dist/elements.css";
export default function() {
return (
Home
Docs
Config
Powered by @browserless.io/elements!
);
}
```