function SomeComponent (props) {
// Create styles as if you're calling css and the class will be applied to the component
return (
This will be blue until hovered.
This font size will be 20px
)
}
const TestComponent = ({ children, ...props }) => (
{children}
);