mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-23 07:38:12 +08:00
renaming backend, cellxgene to server, client respectively
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
.btn {
|
||||
background: none;
|
||||
cursor: pointer;
|
||||
color: "#FFF";
|
||||
border: "none";
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
.container {
|
||||
min-height: 100%;
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
// jshint esversion: 6
|
||||
import React from "react";
|
||||
|
||||
import styles from "./container.css";
|
||||
|
||||
const Container = props => (
|
||||
<div className={styles.container}>{props.children}</div>
|
||||
);
|
||||
|
||||
export default Container;
|
||||
@@ -0,0 +1,3 @@
|
||||
.header {
|
||||
background: red;
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
// jshint esversion: 6
|
||||
import React from "react";
|
||||
|
||||
import Container from "./container";
|
||||
import styles from "./header.css";
|
||||
|
||||
const Header = () => (
|
||||
<header className={styles.header}>
|
||||
<Container />
|
||||
</header>
|
||||
);
|
||||
|
||||
export default Header;
|
||||
@@ -0,0 +1,15 @@
|
||||
// jshint esversion: 6
|
||||
import React from "react";
|
||||
|
||||
const SectionHeader = ({ text }) => (
|
||||
<p
|
||||
style={{
|
||||
fontSize: 32,
|
||||
fontWeight: 700
|
||||
}}
|
||||
>
|
||||
{text}
|
||||
</p>
|
||||
);
|
||||
|
||||
export default SectionHeader;
|
||||
Reference in New Issue
Block a user