mirror of
https://github.com/react-webpack-generators/generator-react-webpack.git
synced 2025-12-08 18:01:59 +00:00
9 lines
158 B
JavaScript
9 lines
158 B
JavaScript
'use strict';
|
|
|
|
var <%= classedName %> = {
|
|
|
|
};
|
|
|
|
<% if (es6) { %> export default <%= classedName %>; <% }
|
|
else { %>module.exports = <%= classedName %>; <% } %>
|