DEV Community

haritzismaildev
haritzismaildev

Posted on

Answer: exporting multiple modules in react.js

if you want to use export default then it should be in separated files because export default can only be used once for one file, here is the example App.jsx file:

import React from 'react'
import { Link } from 'react-router'

class App extends React.Component {
  render() {
     return (
…

Top comments (0)