renaming backend, cellxgene to server, client respectively

This commit is contained in:
Charlotte Weaver
2018-06-26 11:41:32 -07:00
parent 59dcfe2bc4
commit dd5fa57259
97 changed files with 4 additions and 7 deletions
@@ -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;
}
+13
View File
@@ -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;