mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-28 06:48:11 +08:00
12 lines
240 B
JavaScript
12 lines
240 B
JavaScript
// jshint esversion: 6
|
|
import React from "react";
|
|
|
|
import styles from "./container.css";
|
|
|
|
const Container = props => {
|
|
const { children } = props;
|
|
return <div className={styles.container}>{children}</div>;
|
|
};
|
|
|
|
export default Container;
|