main
js 22 lines 427 Bytes
Raw
1 function Component() {
2 return (
3 <div>
4 <Text value={'\n'} />
5 <Text value={'A\tE'} />
6 <Text value={'나은'} />
7 <Text value={'Lauren'} />
8 <Text value={'சத்யா'} />
9 <Text value={'Sathya'} />
10 <Text value={'welcome 👋'} />
11 </div>
12 );
13 }
14
15 function Text({value}) {
16 return <span>{value}</span>;
17 }
18
19 export const FIXTURE_ENTRYPOINT = {
20 fn: Component,
21 params: [{}],
22 };