Change from paper-ui to react-storybook

This commit is contained in:
Arunoda Susiripala 2016-03-22 00:41:57 +05:30
parent 7cd216fd29
commit 0956b32065
5 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
"use strict";
module.exports = function () {
return "\n <!DOCTYPE html>\n <html>\n <head>\n <title>Paper UI Console</title>\n </head>\n <body>\n <div id=\"root\" />\n <script src=\"/static/bundle.js\"></script>\n </body>\n </html>\n ";
return "\n <!DOCTYPE html>\n <html>\n <head>\n <title>React Storybook</title>\n </head>\n <body>\n <div id=\"root\" />\n <script src=\"/static/bundle.js\"></script>\n </body>\n </html>\n ";
};

View File

@ -22,6 +22,6 @@ app.listen(port, function (error) {
if (error) {
console.error(error);
} else {
console.info("Paper UI Console started on => http://localhost:%s/ \n", port);
console.info("React Storybook started on => http://localhost:%s/ \n", port);
}
});

View File

@ -34,6 +34,6 @@
},
"main": "dist/client/index.js",
"bin": {
"paper-ui-server": "./dist/server/index.js"
"storybook-server": "./dist/server/index.js"
}
}

View File

@ -3,7 +3,7 @@ module.exports = function() {
<!DOCTYPE html>
<html>
<head>
<title>Paper UI Console</title>
<title>React Storybook</title>
</head>
<body>
<div id="root" />

View File

@ -21,6 +21,6 @@ app.listen(port, function(error) {
if (error) {
console.error(error)
} else {
console.info("Paper UI Console started on => http://localhost:%s/ \n", port)
console.info("React Storybook started on => http://localhost:%s/ \n", port)
}
})