10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
import CommandLineManager from "../commandline/CommandLineManager";
|
|
|
|
function Safe() {
|
|
return(
|
|
<CommandLineManager page={"safe"}/>
|
|
);
|
|
}
|
|
|
|
export default Safe;
|