mirror of
https://github.com/yldio/copilot.git
synced 2024-12-04 17:10:05 +02:00
15 lines
187 B
JavaScript
15 lines
187 B
JavaScript
const Styled = require('styled-components');
|
|
|
|
const {
|
|
default: styled
|
|
} = Styled;
|
|
|
|
const Form = styled.form`
|
|
margin: 30px auto;
|
|
width: 300px;
|
|
`;
|
|
|
|
module.exports = {
|
|
form: Form
|
|
};
|