export function PathCellDemo()

in components/PathCellDemo.tsx [131:143]


export function PathCellDemo() {
	const style = {
		border: '1px dotted black',
		margin: 8,
		padding: 8,
		width: 300,
	}
	return <>
		{[...demoResults()].map((result, i) => <div key={i} style={style}>
			{renderPathCell(result)}
		</div>)}
	</>
}