Created
April 10, 2020 07:33
-
-
Save josefrichter/9877237feeaaff85f7d4a5fddbdd0894 to your computer and use it in GitHub Desktop.
replicating SwitftUI Spacer() in React
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // replicating SwitftUI Spacer() in React | |
| import * as React from "react" | |
| export function Spacer() { | |
| return <div style={{ flex: "1 1 0" }}> </div> | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment