diff --git a/README.md b/README.md index bc7907eee..29f32870a 100644 --- a/README.md +++ b/README.md @@ -61,9 +61,9 @@ You can then add `UI` to your middlewares (this can be set up using an admin end ```js const app = require('express')() -const { UI } = require('bull-board') +const { router } = require('bull-board') -app.use('/admin/queues', UI) +app.use('/admin/queues', router) // other configurations for your server ```