Skip to content

Commit 441acb2

Browse files
committed
fix: docs updated
1 parent b4d8404 commit 441acb2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ This library solves these problems by providing a declarative way to define your
1919
-**Next.js** (App Router & Pages Router)
2020
-**Vanilla JavaScript** (Framework agnostic)
2121
-**TypeScript** (Full type support)
22-
-**Any JavaScript bundler** (Webpack, Vite, Rollup, etc.)# @mksingh/utils
22+
-**Any JavaScript bundler** (Webpack, Vite, Rollup, etc.)# @mk-singh/web-utils
2323

2424
A collection of JavaScript utility functions designed for modern web development, with special focus on React.js applications. Modular and tree-shakeable for optimal bundle sizes.
2525

2626
## Installation
2727

2828
```javascript
29-
import { createRoutes } from "@mksingh/utils";
29+
import { createRoutes } from "@mk-singh/web-utils";
3030
```
3131

3232
## Modular Imports
@@ -35,7 +35,7 @@ Import only what you need to keep your bundle size small:
3535

3636
```javascript
3737
// Import specific utilities
38-
import { createRoutes } from "@mksingh/utils/factories/route-factory";
38+
import { createRoutes } from "@mk-singh/web-utils/factories/route-factory";
3939
```
4040

4141
## Features
@@ -60,7 +60,7 @@ Transforms a route configuration object into a fully resolved route structure wi
6060
```tsx
6161
import React from 'react';
6262
import { BrowserRouter, Routes, Route, Link } from 'react-router-dom';
63-
import { createRoutes } from "@mksingh/utils/factories/route-factory";
63+
import { createRoutes } from "@mk-singh/web-utils/factories/route-factory";
6464

6565
// Define your route configuration
6666
const routeConfig = {
@@ -126,7 +126,7 @@ function Settings() {
126126
#### Basic Example
127127

128128
```javascript
129-
import { createRoutes } from "@mksingh/utils/factories/route-factory";
129+
import { createRoutes } from "@mk-singh/web-utils/factories/route-factory";
130130

131131
const routeConfig = {
132132
start: { path: "start" },

0 commit comments

Comments
 (0)