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