ToInitialHeart.jsx 358B

1234567891011121314151617
  1. import React from 'react'
  2. import InitialHeart from './InitialHeart'
  3. export default (props) => {
  4. return (
  5. <div
  6. style={{
  7. backgroundColor: "#313131",
  8. }}
  9. >
  10. <div className="marginAuto">
  11. <div style={{ height: "120px" }}></div>
  12. <InitialHeart />
  13. <div style={{ height: "120px" }}></div>
  14. </div>
  15. </div>
  16. )
  17. }