I have the following simple component:
import React from \'react\' import \'../css.scss\' export default (props) => { let activeClass = props.out ? \'is-ac
This happens when you export an anonymous function as your component. If you name the function (component) and then export it, it will show up in the React Dev Tools properly.
const MyComponent = (props) => {} export default MyComponent;