Should this work? ```js import React from 'react'; import styled from 'styled-jss'; import styles from 'my-styles'; const Input = styled('input')(styles.input); export const TextInput = () => ( <Input type='text' /> ); ```
Should this work?