mirror of
https://github.com/snowball-tools/snowballtools-base
synced 2024-11-17 20:39:19 +00:00
create project uses button
This commit is contained in:
parent
efc10d3d7e
commit
cb614c8d8f
@ -6,7 +6,7 @@ import { OctokitProvider } from '../context/OctokitContext';
|
||||
|
||||
const OrgSlug = () => {
|
||||
return (
|
||||
<div className="grid grid-cols-5 h-screen bg-light-blue-50">
|
||||
<div className="grid grid-cols-5 h-screen bg-snowball-50">
|
||||
<>
|
||||
<div className="h-full">
|
||||
<Sidebar />
|
||||
|
@ -1,11 +1,13 @@
|
||||
import React, { useCallback, useEffect, useState } from 'react';
|
||||
import { Link, useParams } from 'react-router-dom';
|
||||
import { Project } from 'gql-client';
|
||||
import { Button } from 'components/shared/Button';
|
||||
|
||||
import { Button, Typography, Chip } from '@material-tailwind/react';
|
||||
import { Typography, Chip } from '@material-tailwind/react';
|
||||
|
||||
import ProjectCard from '../../components/projects/ProjectCard';
|
||||
import { useGQLClient } from '../../context/GQLClientContext';
|
||||
import { PlusIcon } from 'components/shared/CustomIcon';
|
||||
|
||||
const Projects = () => {
|
||||
const client = useGQLClient();
|
||||
@ -40,9 +42,7 @@ const Projects = () => {
|
||||
</div>
|
||||
<div>
|
||||
<Link to="projects/create">
|
||||
<Button className="rounded-full" color="blue" placeholder={''}>
|
||||
Create project
|
||||
</Button>
|
||||
<Button leftIcon={<PlusIcon />}>Create project</Button>
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user