diff --git a/index.html b/index.html index 3c9b0470..9fcae740 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,7 @@ Implementer Interface + diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 00000000..ead6094a Binary files /dev/null and b/public/favicon.ico differ diff --git a/src/common/Dashboard.js b/src/common/Dashboard.js index c825a96d..e7c8a529 100644 --- a/src/common/Dashboard.js +++ b/src/common/Dashboard.js @@ -1,8 +1,10 @@ import React from 'react'; import { Link } from 'react-router-dom'; +import FormBuilderHeader from 'form-builder/components/FormBuilderHeader.jsx'; const Dashboard = () =>
+
diff --git a/webpack.config.js b/webpack.config.js index c1f42525..5f74d428 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -38,9 +38,8 @@ module.exports = { new webpack.HotModuleReplacementPlugin(), new ExtractTextPlugin('styles.css', { allChunks: true }), new CopyWebpackPlugin([ - { - from: path.join(__dirname, 'styles/fonts'), to: path.join(__dirname, 'dist/fonts'), - }, + { from: path.join(__dirname, 'styles/fonts'), to: path.join(__dirname, 'dist/fonts') }, + { from: path.join(__dirname, './public/favicon.ico'), to: path.join(__dirname, 'dist/favicon.ico') } ], { copyUnmodified: true } ), new StyleLintPlugin(),