forked from cerc-io/snowballtools-base
* Implement layout for the projects page * Organize pages according to routes * Handle data from search bar * Get search data on submit --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
10 lines
187 B
TypeScript
10 lines
187 B
TypeScript
import React from 'react';
|
|
|
|
const CreateProject = () => {
|
|
return (
|
|
<div className="bg-white rounded-3xl h-full">Create new project page</div>
|
|
);
|
|
};
|
|
|
|
export default CreateProject;
|