BUI: Tailwind based React component library to build back-office platforms :rocket:
This product is a React ecosystem library specifically designed for building back-office platforms similar to DD360. It is a library created by developers for developers. The current version is stable (v6), and it is licensed under an unspecified license. The library can be installed using npm, and it has a high number of downloads. The average time to resolve an issue is not specified. The library follows CII best practices and includes Storybook.
To install the library, follow these steps:
npm install <package-name>
import { ThemeProvider } from 'dd360-ds/theme';
import { createTheme } from 'dd360-ds/theme';
const theme = createTheme({
primaryColor: 'blue',
secondaryColor: 'green',
// Add more customizations as needed
});
ReactDOM.render(
<ThemeProvider theme={theme}>
<App />
</ThemeProvider>,
document.getElementById('root')
);
import 'dd360-ds/styles.css';
import './App.css';
Note: Make sure to import the library’s CSS as the last stylesheet if you plan to combine it with other styles.
The React ecosystem library being analyzed is a stable and developer-friendly solution for building back-office platforms. It can be easily installed using npm and includes the necessary components and stylesheets for customization. The library follows CII best practices and offers documentation using Storybook. It is a highly recommended choice for developers looking to build similar platforms.