Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/docs/src/blitz-form/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ You must import Blitzar components locally wherever you want to use them, as per

```js
// import what you need
import { BlitzTable, BlitzListForm, BlitzTable } from 'blitzar'
import { BlitzForm, BlitzListForm, BlitzTable } from 'blitzar'
// include Blitzar's CSS (kept at minimal and doesn't pollute global scope)
import 'blitzar/dist/style.css'

// add to local components where you use it:
export default {
components: { BlitzTable, BlitzListForm, BlitzTable },
components: { BlitzForm, BlitzListForm, BlitzTable },
}
```

Expand Down