mirror of
https://github.com/ansible/awx.git
synced 2026-01-21 22:48:02 -03:30
11 lines
232 B
JavaScript
11 lines
232 B
JavaScript
import React, { Component } from 'react';
|
|
import { CardBody } from '@patternfly/react-core';
|
|
|
|
class ProjectAccess extends Component {
|
|
render() {
|
|
return <CardBody>Coming soon :)</CardBody>;
|
|
}
|
|
}
|
|
|
|
export default ProjectAccess;
|