(files: {
[path: string]: string;
})
| 207 | : undefined; |
| 208 | |
| 209 | const getEntryFileName = (files: { |
| 210 | [path: string]: string; |
| 211 | }): string | undefined => |
| 212 | ['src/main.jsx', 'src/main.js', 'index.jsx', 'index.js'].find( |
| 213 | (path) => files[path] != null, |
| 214 | ); |
| 215 | |
| 216 | export const ExecutableProject: NoPropComponent = (): any => { |
| 217 | const {name: title, summary: description = '', executables} = usePageNode(); |
no outgoing calls
no test coverage detected
searching dependent graphs…