UNPKG

make-js-component

Version:

Easily create your js framework component in one command

11 lines (8 loc) 203 B
import styled from "styled-components"; const Title = styled.div` font-size: x-large; font-weight: bold; `; export default function ComponentName({}) { return <Title>Hello ComponentName</Title>; }