Build full featured Windows fluent UI apps using ReactJS.
https://virtualvivek.github.io/react-windows-ui/
$ npm install react-windows-ui// Be sure to include styles at some point, probably during your bootstraping
import 'react-windows-ui/config/app-config.css'
import 'react-windows-ui/dist/react-windows-ui.min.css'
import 'react-windows-ui/icons/fonts/fonts.min.css'‣ app-config.css file contains the PrimaryColor, Fontfamily used by the app.
‣ You can import default app-config using this file app-config.css.
OR
Create your own like this
:root {
--PrimaryColor: #6632a8; /* Change color you like */
}
body {
font-family: "Segoe UI"; /* Change fontfamily you like */
}import { Button, InputText } from 'react-windows-ui';
const App = () => (
<>
<Button type="primary" value="Press Me" />
<InputText placeholder="Enter a text" />
</>
);$ git clone https://github.com/virtualvivek/react-windows-ui.git
$ cd react-windows-ui
$ npm install
$ npm start| Name | Details | Link |
|---|---|---|
| Example Codes | Components implementation here | Example LINK |
| Library Source | Folder publish to npm |
Library LINK |
| Library SCSS Source | Style scss source code |
SCSS LINK |
| SunValley SCSS Source | SunValley Style scss source code |
SCSS LINK |
Support it by joining stargazers for this repository. ⭐
react-windows-ui is licensed under MIT license. View license.
Copyright (c) 2021 Vivek Verma


