11 lines
138 B
TypeScript
11 lines
138 B
TypeScript
import React from 'react';
|
|
|
|
export default function ViewCreateProject() {
|
|
return (
|
|
<div>
|
|
ViewCreateProject
|
|
</div>
|
|
);
|
|
}
|
|
|