Skip to content

Commit 2368740

Browse files
ttbarnesglasserc
authored andcommittedJan 22, 2019
replace submit button paragraph tag with div (#766)
1 parent 2ccfa7e commit 2368740

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/components/Form.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,11 @@ export default class Form extends Component {
250250
{children ? (
251251
children
252252
) : (
253-
<p>
253+
<div>
254254
<button type="submit" className="btn btn-info">
255255
Submit
256256
</button>
257-
</p>
257+
</div>
258258
)}
259259
</form>
260260
);

0 commit comments

Comments
 (0)
Please sign in to comment.