FormLayout example:

```js

initialState = { 
	firstName: 'James',
	surname: 'Hunt',
	bio: 'James Simon Wallis Hunt (29 August 1947 – 15 June 1993)[1] was a British racing driver who won the Formula One World Championship in 1976. After retiring from racing in 1979, Hunt became a media commentator and businessman.'
};

<FormLayout>
	<FormRow>
		<FormLabel>Name</FormLabel>
		<FormContent>
			<Input 
				type="text" 
				value={state.firstName}
				onChange={(e, value) => setState({ firstName: value})}
				fullWidth
			/>
		</FormContent>
	</FormRow>
	<FormRow>
		<FormLabel>Surname</FormLabel>
		<FormContent>
			<Input 
				type="text" 
				value={state.surname}
				onChange={(e, value) => setState({ surname: value})}
				fullWidth
			/>
		</FormContent>
	</FormRow>
	<FormRow>
		<FormLabel>Bio</FormLabel>
		<FormContent>
			<Textarea
				name="bio"
				onChange={(e, value) => setState({ bio: value})}
				value={state.bio}
			/>
		</FormContent>	
	</FormRow>
</FormLayout>

```
