UNPKG

react-see-more

Version:

React component which shows "n more" indicating n more children are in the scrollable list but not in the viewport

21 lines (19 loc) 343 B
var path = require('path'); module.exports = { mode: 'production', entry: './src/NMore.js', output: { path: path.resolve('lib'), filename: 'NMore.js', libraryTarget: 'commonjs2' }, module: { rules: [ { test: /\.jsx?$/, exclude: /(node_modules)/, use: 'babel-loader' } ] } }