1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 22:03:54 +03:00
copilot/spikes/form/redux-form/client/form/shared.js

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
};