summaryrefslogtreecommitdiffstats
path: root/browser/components/pocket/content/panels/js/components/Header/Header.jsx
blob: be60fe764c4db69c0aa963a50de9e8fb060cdae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

import React from "react";

function Header(props) {
  return (
    <h1 className="stp_header">
      <div className="stp_header_logo" />
      {props.children}
    </h1>
  );
}

export default Header;