Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support more components types #26

Open
proof666 opened this issue Nov 7, 2019 · 0 comments
Open

Support more components types #26

proof666 opened this issue Nov 7, 2019 · 0 comments

Comments

@proof666
Copy link

proof666 commented Nov 7, 2019

It would be great to create other components types like FunctionComponent or StatelesFunction

import * as React from 'react'

interface IAppProps {}

const App: React.FunctionComponent<IAppProps> = props => {
    return
}

export default App
import * as React from 'react'

export interface IAppScreenProps {}

export function AppScreen(props: IAppScreenProps) {
    return <div></div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant