HomeDate.js 481 Bytes
import React from "react";
import styled from "styled-components";

const HomeDate = styled.div`
  display: flex;
  flex-direction: column;
`;

const WeatherBox = styled.div``;

const WeatherSpan = styled.span``;

const DateBox = styled.div``;

const DateSpan = styled.span``;

export default () => {
  return (
    <HomeDate>
      <WeatherBox>
        <WeatherSpan /> Weather
      </WeatherBox>
      <DateBox>
        <DateSpan /> Date
      </DateBox>
    </HomeDate>
  );
};