Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

styled component

import React from "react";
import styled from "styled-components";

export default function Wrapper({ children }) {
  return (
    <div>
      <StyledButton>{children}</StyledButton>
    </div>
  );
}
const StyledButton = styled("div")`
  padding: 10px;
  margin: 10px;
`;
Source by malcoded.com #
 
PREVIOUS NEXT
Tagged: #styled #component
ADD COMMENT
Topic
Name
4+3 =