@mgxs/common
v1.3.0
Published
MGXS LIbrary of common components
Downloads
7
Readme
MGXS Common library
- Creates Material-UI default theme
- Spritesheet Loader Component
more to come
Install on another React project
npm add @mgxs/common @emotion/react @emotion/styled @mui/material
Usage
Theme
On your index.tsx
file from your React project add
import { Theme } from "@mgxs/common";
import ReactDOM from "react-dom/client";
import { App } from "./components";
const root = ReactDOM.createRoot(
document.getElementById("root") as HTMLElement
);
root.render(
<Theme>
<App />
</Theme>
);
Loader
import { Loader } from "@mgxs/common";
const Page = () => {
return <Loader scale={2} />;
};