Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save KTruong008/d93a744687d269b559238764d89cde5d to your computer and use it in GitHub Desktop.
Save KTruong008/d93a744687d269b559238764d89cde5d to your computer and use it in GitHub Desktop.
import React from 'react';
import Box from './styles/Box'
import Trigger from './styles/Trigger';
export class App extends React.Component {
render() {
return (
<Trigger>
<Box />
</Trigger>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment