mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-30 16:01:10 -04:00
8 lines
196 B
JavaScript
8 lines
196 B
JavaScript
const challengePageCreators = require('./challengePageCreator');
|
|
const guidePageCreators = require('./guidePageCreator');
|
|
|
|
module.exports = {
|
|
...challengePageCreators,
|
|
...guidePageCreators
|
|
};
|