Some text1import React from 'react';2import { styled } from '@filbert-js/core';34const Text = ({ className }) => <p className={className}>Some text</p>;56const PinkText = styled(Text)`7 color: hotpink;8`;9render(<PinkText />);
Some text
1import React from 'react';2import { styled } from '@filbert-js/core';34const Text = ({ className }) => <p className={className}>Some text</p>;56const PinkText = styled(Text)`7 color: hotpink;8`;9render(<PinkText />);