mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-04 20:57:17 +02:00
536 B
536 B
id | title |
---|---|
highlight | Syntax highlighting demo |
#include<bits/stdc++.h>
using namespace std;
int main() {
cout << "Hello world\n";
return 0;
}
class Example extends React.Component {
render() {
return (
<View style={{flex: 1, alignItems: 'center', justifyContent: 'center'}}>
<Text>Docusaurus</Text>
<Button
title="Click me"
onPress={() => this.props.navigation.push('Docusaurus')}
/>
</View>
);
}
}