Answers for "whats styled components"

22

styled-components

npm install --save styled-components

# yarn 
yarn add styled-components
Posted by: Guest on July-24-2020
1

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;
`;
Posted by: Guest on April-02-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language