Skip to content

Instantly share code, notes, and snippets.

@josefrichter
Created April 10, 2020 07:33
Show Gist options
  • Select an option

  • Save josefrichter/9877237feeaaff85f7d4a5fddbdd0894 to your computer and use it in GitHub Desktop.

Select an option

Save josefrichter/9877237feeaaff85f7d4a5fddbdd0894 to your computer and use it in GitHub Desktop.
replicating SwitftUI Spacer() in React
// replicating SwitftUI Spacer() in React
import * as React from "react"
export function Spacer() {
return <div style={{ flex: "1 1 0" }}>&nbsp;</div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment