Digital Edu Management UI Components.
npm install dem-design
import React from "react";
import { Tree } from "dem-design";
import "dem-design/styles/global.css"; // CSS file
const treeData = [
{
title: "Root",
key: "0",
children: [
{ title: "Child 1", key: "0-0" },
{ title: "Child 2", key: "0-1" },
],
},
];
const App = () => {
return <Tree treeData={treeData} />;
};
export default App;
- This project works with React version 18.2.0.
Git Clone
git clone https://github.com/temuujin-0/dem-design.git or git@github.com:temuujin-0/dem-design.git
Git Publish
git add .
git commit -m "any"
git pull origin main
git push origin main
🏗Build
npm run build
✨Version update
npm version patch # Small fixes
npm version minor # New features
npm version major # Breaking changes
🌍Publish Public
npm publish --access public
🔨Conflicting Packages Fixing
rm -rf node_modules package-lock.json
npm cache clean --force
npm -f install
Distributed under the MIT License.