Skip to content

Commit

Permalink
fix: storybook server.js import express
Browse files Browse the repository at this point in the history
  • Loading branch information
Amiditin committed Aug 23, 2024
1 parent 6c3f44a commit 44491da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ui-admin/design/server.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const express = require('express')
const cors = require('cors')
import express from 'express'
import cors from 'cors'

const app = express()
const port = 3000
Expand Down
4 changes: 2 additions & 2 deletions ui-parts/design/server.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const express = require('express')
const cors = require('cors')
import express from 'express'
import cors from 'cors'

const app = express()
const port = 3000
Expand Down
2 changes: 1 addition & 1 deletion ui/design/server.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const express = require('express')
import express from 'express'

const app = express()
const port = 3000
Expand Down

0 comments on commit 44491da

Please sign in to comment.