diff --git a/README.md b/README.md
index 74e220b..63d6096 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ I worked a lot with [Express.js](https://expressjs.com/) in the past and really
### Simple Example
```javascript
-import Router from '@tsndr/cloudflare-worker-router'
+import { Router } from '@tsndr/cloudflare-worker-router'
// Initialize router
const router = new Router()
@@ -192,7 +192,7 @@ and replace your `index.ts` / `index.js` with one of the following scripts
TypeScript (src/index.ts)
```typescript
-import Router from '@tsndr/cloudflare-worker-router'
+import { Router } from '@tsndr/cloudflare-worker-router'
export interface Env {
// Example binding to KV. Learn more at https://developers.cloudflare.com/workers/runtime-apis/kv/
@@ -221,7 +221,7 @@ export default {
JavaScript (src/index.js)
```javascript
-import Router from '@tsndr/cloudflare-worker-router'
+import { Router } from '@tsndr/cloudflare-worker-router'
const router = new Router()
diff --git a/src/index.ts b/src/index.ts
index 83fec79..776ce0d 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -131,7 +131,7 @@ export interface RouterCorsConfig {
* @public
* @class
*/
-export default class Router {
+export class Router {
/**
* Router Array