Usually we organize components React components in separate files. But for smaller components associated with component we are using need not be placed in operate file. In short it is possible to place multiple components in a single js file and export them.
..... our component codes goes her module.exports= {Post,Tags,Comments}
In the above fashion we can export the components and can import the components as follows
const {Post,Tags,Comments} =from './components'