import * as React from 'react'; import Head from 'next/head'; import { Heading, Spacer } from '@1milligram/design'; import { RelatedPatterns } from '../../components/RelatedPatterns'; import { Pattern } from '../../constants/Pattern'; import { PatternLayout } from '../../layouts/PatternLayout'; import BrowserFrame from '../../placeholders/BrowserFrame'; import Circle from '../../placeholders/Circle'; import Rectangle from '../../placeholders/Rectangle'; const Details: React.FC<{}> = () => { const Item: React.FC<{}> = ({ children }) => { return (
{children}
); }; return (
...
...
`} css={` .container { /* Content is center horizontally */ align-items: center; display: flex; /* The property name will stick to the left, and the value will stick to the right */ justify-content: space-between; border-bottom: 1px solid rgba(0, 0, 0, 0.3); /* Spacing */ margin: 0px; padding: 8px 0px; } `} >
Use cases
Name
WebAssembly in Action
Author
Gerard Gallant
Publishing date
November 2019
ISBN
9781617295744
); }; export default Details;