styled
is a way to create React components that have styles attached to them
1import React from 'react';2import { styled } from '@filbert-js/core';34const Button = styled('button')`5 background: pink;6 border: solid 1px gray;7`;89render(<Button>This is a Button component.</Button>);