App.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. import React, { Component } from 'react';
  2. import ChristmasForm from './form'
  3. import './App.css';
  4. import { MdWarning as WarningIcon } from 'react-icons/md'
  5. import { TiTree as TreeIcon } from 'react-icons/ti'
  6. import { FaSmileWink as WinkEmoji } from 'react-icons/fa'
  7. const styles = {
  8. row: {
  9. display: 'inline-block'
  10. },
  11. main: {
  12. // display: 'flex'
  13. },
  14. meat: {
  15. flex: 3,
  16. backgroundColor: '#ffffff'
  17. },
  18. warning: {
  19. display: 'inline-block',
  20. color: 'yellow',
  21. fontSize: '36pt'
  22. },
  23. tree: {
  24. display: 'block',
  25. fontSize: '48pt',
  26. color: 'green'
  27. },
  28. spin: {
  29. animation: 'App-logo-spin infinite 20s linear'
  30. },
  31. logo: {
  32. backgroundImage:`url(${require('./invite.jpeg')})`,
  33. backgroundRepeat: 'no-repeat',
  34. backgroundSize: 'contain',
  35. width: '20em',
  36. height: '26em'
  37. },
  38. columnLeft: {
  39. flex: 1,
  40. backgroundColor: '#ff0000'
  41. },
  42. columnRight: {
  43. flex: 1,
  44. backgroundColor: '#ff0000'
  45. }
  46. }
  47. class App extends Component {
  48. testClick = async () => {
  49. await fetch('http://localhost:3002/test', {
  50. method: 'POST',
  51. body: { test: 'test body' }
  52. })
  53. }
  54. render() {
  55. return (
  56. <div className="App" style={styles.main}>
  57. <header className="App-header" style={styles.meat}>
  58. <div id='main-image' style={styles.logo}/>
  59. <ChristmasForm />
  60. </header>
  61. </div>
  62. );
  63. }
  64. }
  65. export default App;