components#Table JavaScript Examples

The following examples show how to use components#Table. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: icopublish.jsx    From crypto-manager with MIT License 6 votes vote down vote up
function icoPublished({ ...props }) {
  return (
    <Grid container>
      <ItemGrid xs={12} sm={12} md={12}>
        <RegularCard
          cardTitle="All ICO's Table"
          // cardSubtitle="Here is a subtitle for this table"
          content={
            <Table
              tableHeaderColor="primary"
            //   tableHead={["Name", "ETA", "TEAM", "CONCEPT", "WHITE", "SOCIAL"]}
              tableData={[
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738","Dakota Rice", "Niger", "Oud-Turnhout", "$36,738", "$36,738"],
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738","Dakota Rice", "Niger", "Oud-Turnhout", "$36,738", "$36,738"],
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738","Dakota Rice", "Niger", "Oud-Turnhout", "$36,738", "$36,738"],
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738","Dakota Rice", "Niger", "Oud-Turnhout", "$36,738", "$36,738"],
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738","Dakota Rice", "Niger", "Oud-Turnhout", "$36,738", "$36,738"],
                // ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738","Dakota Rice", "Niger", "Oud-Turnhout", "$36,738", "$36,738"],
                // ["Sage Rodriguez", "Netherlands", "Baileux", "$56,142"],
                // ["Philip Chaney", "Korea, South", "Overland Park", "$38,735"],
                // ["Doris Greene", "Malawi", "Feldkirchen in Kärnten", "$63,542"],
                // ["Mason Porter", "Chile", "Gloucester", "$78,615"]
              ]}
            />
          }
        />
      </ItemGrid>
    </Grid>
  );
}
Example #2
Source File: icotablelist.jsx    From crypto-manager with MIT License 5 votes vote down vote up
function icoTableList({ ...props }) {
  return (
    <Grid container>
      <ItemGrid xs={12} sm={12} md={12}>
        <RegularCard
          cardTitle="All ICO's Table"
          // cardSubtitle="Here is a subtitle for this table"
          content={
            <Table
              tableHeaderColor="primary"
            //   tableHead={["Name", "ETA", "TEAM", "CONCEPT", "WHITE", "SOCIAL"]}
              tableData={[
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738","Dakota Rice", "Niger", "Oud-Turnhout", "$36,738", "$36,738"],
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738","Dakota Rice", "Niger", "Oud-Turnhout", "$36,738", "$36,738"],
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738","Dakota Rice", "Niger", "Oud-Turnhout", "$36,738", "$36,738"],
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738","Dakota Rice", "Niger", "Oud-Turnhout", "$36,738", "$36,738"],
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738","Dakota Rice", "Niger", "Oud-Turnhout", "$36,738", "$36,738"],
                // ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738","Dakota Rice", "Niger", "Oud-Turnhout", "$36,738", "$36,738"],
                // ["Sage Rodriguez", "Netherlands", "Baileux", "$56,142"],
                // ["Philip Chaney", "Korea, South", "Overland Park", "$38,735"],
                // ["Doris Greene", "Malawi", "Feldkirchen in Kärnten", "$63,542"],
                // ["Mason Porter", "Chile", "Gloucester", "$78,615"]
              ]}
            />
          }
        />
      </ItemGrid>
      {/* <ItemGrid xs={12} sm={12} md={12}>
        <RegularCard
          cardTitle="UPCOMING Table"
          // cardSubtitle="Here is a subtitle for this table"
          content={
            <Table
              tableHeaderColor="primary"
            //   tableHead={["Name", "ETA", "OVERALL", "SOCIAL"]}
              tableData={[
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738",],
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738",],
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738",],
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738",],
                ["Dakota Rice", "Niger", "Oud-Turnhout", "$36,738",],
              ]}
            />
          }
        />
      </ItemGrid> */}
    </Grid>
  );
}