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