mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
11 lines
175 B
JavaScript
11 lines
175 B
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import Home from './index';
|
|
|
|
class Error extends React.Component<{}> {
|
|
render() {
|
|
return <Home />;
|
|
}
|
|
}
|
|
|
|
export default Error;
|