Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Docz | 23,379 | 686 | 1,477 | 3 days ago | 275 | February 11, 2022 | 110 | mit | TypeScript | |
✍ It has never been so easy to document your things! | ||||||||||
Semantic Ui React | 13,088 | 8,465 | 1,234 | a month ago | 155 | February 28, 2023 | 192 | mit | JavaScript | |
The official Semantic-UI-React integration | ||||||||||
Nextra | 8,794 | 73 | 16 hours ago | 166 | July 13, 2023 | 211 | mit | TypeScript | ||
Simple, powerful and flexible site generation framework with everything you love from Next.js. | ||||||||||
React Toolbox | 8,705 | 1,310 | 137 | 2 years ago | 66 | June 02, 2018 | 267 | mit | JavaScript | |
A set of React components implementing Google's Material Design specification with the power of CSS Modules | ||||||||||
Rebass | 7,905 | 744 | 365 | 2 months ago | 109 | October 28, 2019 | 98 | mit | JavaScript | |
:atom_symbol: React primitive UI components built with styled-system. | ||||||||||
Semi Design | 7,292 | 30 | 6 days ago | 261 | July 31, 2023 | 141 | other | TypeScript | ||
🚀A modern, comprehensive, flexible design system and React UI library. 🎨 Provide more than 2,739+ Design Tokens and powerful DSM tools, easy to build your own design system. Make Semi Design to Any Design | ||||||||||
React Quill | 5,623 | 777 | 629 | 8 months ago | 49 | August 03, 2022 | 293 | mit | JavaScript | |
A Quill component for React. | ||||||||||
Theme Ui | 5,097 | 331 | 929 | 7 days ago | 487 | August 01, 2023 | 71 | mit | TypeScript | |
Build consistent, themeable React apps based on constraint-based design principles | ||||||||||
Next | 4,460 | 65 | 9,661 | 9 days ago | 482 | August 11, 2023 | 567 | mit | JavaScript | |
🦍 A configurable component library for web built on React. | ||||||||||
Playroom | 4,359 | 11 | 72 | a month ago | 100 | August 01, 2023 | 51 | mit | TypeScript | |
Design with JSX, powered by your own component library. |
React Components that Implement Microsoft's UWP Design & Fluent Design System.
Visit react-uwp.com online to review the API, see the components in action with live.
Or build the documentation to locally.
React-UWP is available as an npm package.
Use NPM to get React-UWP components and core styling. All you need is node.js and gulp.
npm install --save react-uwp
React-UWP components require a theme to be provided.
The quickest way to get up and running is by using the Theme
to inject the theme into your application context.then, you can use any of the components as demonstrated in documentation.
If you coding by Typescript, add
ReactUWP
namespace totsconfig.json
.
{
"compilerOptions": {
"typeRoots": [
"./node_modules/@types"
],
"filesGlob": [
"**/*.ts",
"**/*.tsx"
],
"files": [
"node_modules/react-uwp/index.d.ts" // add to here.
]
}
}
./App.js
import * as React from "react";
import * as ReactDOM from "react-dom";
import { Theme as UWPThemeProvider, getTheme } from "react-uwp/Theme";
import MyComponent from "./MyComponent";
export class App extends React.Component {
render() {
return (
<UWPThemeProvider
theme={getTheme({
themeName: "dark", // set custom theme
accent: "#0078D7", // set accent color
useFluentDesign: true, // sure you want use new fluent design.
desktopBackgroundImage: "http://127.0.0.1:8092/staticimages/jennifer-bailey-10753.jpg" // set global desktop background image
})}
>
<MyComponent />
</UWPThemeProvider>
)
}
}
ReactDOM.render(
<App />,
document.getElementById("app")
);
./MyComponent.js
import * as React from "react";
import Button from "react-uwp/Button";
export default class MyComponent extends React.Component<void, void> {
render() {
return (
<Button tooltip="Mini Tooltip" />
)
}
}
Notice:
that in the above example, we used:
import Button from "react-uwp/Button";
instead of
import { Button } from "react-uwp";
This will make your build process faster and your build output smaller.
For a complete mapping of React-UWP components to import
,
see /src/index.ts
inside the React-UWP npm package root directory.
We have implemented a default theme to render all React-UWP components. Styling components to your liking is simple and hassle-free. This can be achieved in the following two ways: