React Tree Component with Smooth Expand/Collapse Animation
/**
* @file
* @author
* @version
* @since
* @description This is a generic component used to show the cube's outline (dimensions roles tree).
*/
import * as React from 'react';
import Box from '@mui/material/Box';
import { useEffect, useState } from 'react';
import MetaApi from '../utils/meta-api';
const CubeOutline = ({ cubeGid, callbac ...
Posted on Tue, 16 Jun 2026 16:16:17 +0000 by visionmaster
Creating a React + Vite + TypeScript Project with MUI on Ubuntu
Project Setup on Ubuntu
A React project using Vite, TypeScript, and Material UI will be created with the name website.
Prerequisites: Install Node.js and npm
If Node.js is not yet installed on your system, set it up using nvm:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
source ~/.bashrc
nvm install 20
nvm use ...
Posted on Tue, 26 May 2026 20:01:25 +0000 by imi_99