1234567891011121314151617 |
- import React from 'react'
- import InitialHeart from './InitialHeart'
- export default (props) => {
- return (
- <div
- style={{
- backgroundColor: "#313131",
- }}
- >
- <div className="marginAuto">
- <div style={{ height: "120px" }}></div>
- <InitialHeart />
- <div style={{ height: "120px" }}></div>
- </div>
- </div>
- )
- }
|